Mercurial > repos > tabletprog
view samples/testdict.tp @ 121:1a4446f573d3
Add isInteger? method to the int32 type in the C backend
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Thu, 01 Aug 2013 19:10:48 -0700 |
parents | 6735db9b44ba |
children |
line wrap: on
line source
#{ main <- { foo <- dict linear: foo set: "key1" "val1" foo set: "key2" "val2" foreach: foo :k :v { print: k . ", " . v . "\n" } } }