mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
8 lines
155 B
Python
8 lines
155 B
Python
|
# world.py: global state variables go here
|
||
|
|
||
|
# Global variable to indicate whether we're being ran directly, or imported
|
||
|
# for a testcase.
|
||
|
testing = True
|
||
|
|
||
|
|