Пример #1
0
def quickSimulation():
		"""
		Lunch a quick simulation.
		"""

		world = World()
		print(world)
		while True:
			time.sleep(1)
			world.iterate()
			print(world)
Пример #2
0
def quickSimulation():
    """
		Lunch a quick simulation.
		"""

    world = World()
    print(world)
    while True:
        time.sleep(1)
        world.iterate()
        print(world)