A very basic JSON parser, written in [new language]. Only supports String, Int and Array so far.
json := "[42, \"hello\", [\"good\", \"bye\"]]"
JSON = String|Int|[JSON] // TODO: true, false, null, object
skipSpace(json: String) String {
input := json
while input.first == " " {