Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created May 2, 2014 17:41
Show Gist options
  • Save AeroNotix/11481484 to your computer and use it in GitHub Desktop.
Save AeroNotix/11481484 to your computer and use it in GitHub Desktop.
open Core.Std
type json =
| String of string
| Int of int
| Float of float
| Bool of bool
| Array of json list
| Object of (string * json)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment