Skip to content

Instantly share code, notes, and snippets.

@cpdean
Last active January 14, 2017 23:23
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 cpdean/8ccba7b26f23b27efa746f7a7e75ec6b to your computer and use it in GitHub Desktop.
Save cpdean/8ccba7b26f23b27efa746f7a7e75ec6b to your computer and use it in GitHub Desktop.
(* how is this: *)
type value = [
| `Assoc of (string * value) list
| `Bool of bool
| `Float of float
| `Int of int
| `List of value list
| `Null
| `String of string
]
(* different from this? *)
type basic_color =
| Black | Red | Green | Yellow | Blue | Magenta | Cyan | White ;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment