7 lines
97 B
Python
7 lines
97 B
Python
def main():
|
|
print("Hello from game-theory-of-life!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|