Sha256: d0d789ad5951500d05735582ddef95f97f265b6104167c0f283064926b079a86
Contents?: true
Size: 534 Bytes
Versions: 90
Compression:
Stored size: 534 Bytes
Contents
module RobotSimulator type Direction = North | East | South | West type Position = int * int type Robot = { direction: Direction; position: Position } let create direction position = 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 instructions instructions' robot = failwith "You need to implement this function."
Version data entries
90 entries across 90 versions & 1 rubygems