summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Renes <wrenes@gmail.com>2021-04-30 11:52:41 +0200
committerWillem Renes <wrenes@gmail.com>2021-04-30 11:52:41 +0200
commit87cd50ccfd5ed1f75bfb3101efb24fbcc9a6e78c (patch)
treecf727d34dfabf5c32eb7423597306d5a75239586
parent455fdc9236d8778966710a9e4fd17f4ae496d6ab (diff)
downloadSpiderWorld-87cd50ccfd5ed1f75bfb3101efb24fbcc9a6e78c.tar.gz
SpiderWorld-87cd50ccfd5ed1f75bfb3101efb24fbcc9a6e78c.zip
quick boilerplate stuff
-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()