Sha256: 543f9b0ae1e5d8a6e0e5fe6ea251aa4b7a8b1eee7c7ed916e625d8d75dd8c023
Contents?: true
Size: 534 Bytes
Versions: 37
Compression:
Stored size: 534 Bytes
Contents
module RobotSimulator type Bearing = North | East | South | West type Coordinate = int * int type Robot = { bearing: Bearing; coordinate: Coordinate } let createRobot bearing coordinate = failwith "You need to implement this function." let turnLeft robot = failwith "You need to implement this function." let turnRight robot = failwith "You need to implement this function." let advance robot = failwith "You need to implement this function." let simulate robot instructions = failwith "You need to implement this function."
Version data entries
37 entries across 37 versions & 1 rubygems