Files
python/exercises/practice/robot-simulator/robot_simulator.py
Job van der Wal 37e518470a Let's try again.
2021-11-23 08:48:42 -08:00

12 lines
201 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_pos=0, y_pos=0):
pass