Mercurial > repos > tabletprog
view samples/json.tp @ 225:262f5ae1bb1b
Added a new binaryOps:withHigherPrec macro to simplify specification of binary operator precedence level rules in the grammar
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 29 Dec 2013 14:39:54 -0800 |
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" } } }