Skip to content

Instantly share code, notes, and snippets.

@Zulko
Last active August 29, 2015 14:01
Show Gist options
  • Save Zulko/97fa4632c43fe358ac7f to your computer and use it in GitHub Desktop.
Save Zulko/97fa4632c43fe358ac7f to your computer and use it in GitHub Desktop.
Tests for elm
type Coord = (Float, Float)
type Node = { label : String
, coord : Coord
}
type Edge = { color : Int
, n1 : Node
, n2 : Node
}
type Maze = { edges : Edge }
type State = (Node, Int, Node)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment