Files
python/exercises/practice/robot-simulator/robot_simulator.py
2021-01-29 11:14:36 -05:00

12 lines
193 B
Python

# Globals for the directions
# Change the values as you see fit
EAST = None
NORTH = None
WEST = None
SOUTH = None
class Robot:
def __init__(self, direction=NORTH, x=0, y=0):
pass