annotate samples/json.tp @ 239:6aab8a5a2be9
Don't expose internal helper functions in parser module
author |
Mike Pavone <pavone@retrodev.com> |
date |
Sun, 05 Jan 2014 19:28:09 -0800 |
parents |
6e579a75a0a9 |
children |
|
rev |
line source |
154
|
1 #{
|
|
2 main <- {
|
|
3 arr <- json decode: "[\"foo\", \"bar\", 13245, \"baz\" ]"
|
|
4 foreach: arr :idx val {
|
|
5 print: (string: idx) . ": " . (string: val) . "\n"
|
|
6 }
|
|
7 obj <- json decode: "{\"foo\": \"bar\", \"baz\": \"qux\", \"meaningOfLife\": 42 }"
|
|
8 foreach: obj :idx val {
|
|
9 print: (string: idx) . ": " . (string: val) . "\n"
|
|
10 }
|
|
11 }
|
|
12 }
|