Skip to content

Instantly share code, notes, and snippets.

@jcsherin
Last active April 22, 2018 13:54
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 jcsherin/c391b1f61f07c2f9f37be9ce53b57021 to your computer and use it in GitHub Desktop.
Save jcsherin/c391b1f61f07c2f9f37be9ce53b57021 to your computer and use it in GitHub Desktop.
type t =
| Object(list((string, t)))
| List(list(t))
| Bool(bool)
| Float(float)
| Int(int)
| String(string)
| Null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment