summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spiderworld.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/spiderworld.py b/spiderworld.py
new file mode 100644
index 0000000..6d17602
--- /dev/null
+++ b/spiderworld.py
@@ -0,0 +1,13 @@
+#!/bin/usr/env python
+"""
+Script to rudementarally model spiders colonising new terrain, and the effect
+that could have on increasing the nutrient levels.
+"""
+
+
+def main():
+ """ main function, do stuff """
+
+
+if __name__ == '__main__':
+ main()