Skip to content

Instantly share code, notes, and snippets.

@zakaluka
Created February 17, 2017 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakaluka/e72f1f6365880cbad3eab4b729be00eb to your computer and use it in GitHub Desktop.
Save zakaluka/e72f1f6365880cbad3eab4b729be00eb to your computer and use it in GitHub Desktop.
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