summaryrefslogtreecommitdiff
path: root/spiderworld.py
blob: 6d17602c246fa2f0dff67f08049cd742f918a936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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()