annotate samples/json.tp @ 287:b01d7c1b4edd
Add binding for simple form of SDL_RenderCopyEx
author |
Michael Pavone <pavone@retrodev.com> |
date |
Tue, 22 Jul 2014 18:39:00 -0700 |
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 }
|