Created
February 17, 2017 17:31
-
-
Save zakaluka/e72f1f6365880cbad3eab4b729be00eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Direction = | |
| North | |
| South | |
| East | |
| West | |
type TurnTo = | |
| R | |
| L | |
type Point = { | |
x : int | |
y : int | |
} | |
type Location = { | |
dir : Direction | |
pt : Point | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment