Mercurial > repos > tabletprog
view samples/json.tp @ 358:27477c8c2823
Add support for simple type annotations in parser and update llhello sample with a possible new low-level dialect syntax leveraging those annotations
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Fri, 17 Apr 2015 17:50:47 -0700 |
parents | 6e579a75a0a9 |
children |
line wrap: on
line source
#{ main <- { arr <- json decode: "[\"foo\", \"bar\", 13245, \"baz\" ]" foreach: arr :idx val { print: (string: idx) . ": " . (string: val) . "\n" } obj <- json decode: "{\"foo\": \"bar\", \"baz\": \"qux\", \"meaningOfLife\": 42 }" foreach: obj :idx val { print: (string: idx) . ": " . (string: val) . "\n" } } }