Files
python/exercises/robot-simulator/robot_simulator.py

12 lines
197 B
Python
Raw Normal View History

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