Go to file
Jake 0676c077fd added pause and reset buttons 2025-03-27 11:00:57 +08:00
game.js added pause and reset buttons 2025-03-27 11:00:57 +08:00
index.html added pause and reset buttons 2025-03-27 11:00:57 +08:00
old.html implemented output to page console, and updates DOM after every line of code to prevent long waits 2025-03-23 17:02:14 +08:00
pyodide-worker.js added Robot class, robot module can send move and turn commands to player robot, no connection to AI robots yet 2025-03-24 12:25:55 +08:00
readme.md added pause and reset buttons 2025-03-27 11:00:57 +08:00
robot.js added Robot class, robot module can send move and turn commands to player robot, no connection to AI robots yet 2025-03-24 12:25:55 +08:00
todo.md added pause and reset buttons 2025-03-27 11:00:57 +08:00

readme.md

import robot import time

robot.move(0.5) await time.sleep(1) while True: robot.turn(5) await time.sleep(0.1)