annotate samples/json.tp @ 375:f8d80c16abbd
Add epoll module and a basic epoll sample
author |
Michael Pavone <pavone@retrodev.com> |
date |
Fri, 14 Aug 2015 23:08:54 -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 }
|