Mercurial > repos > tabletprog
view samples/slist.tp @ 211:53cd9c3bcf96
Don't compile quote expressions in C backend for now
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Sat, 30 Nov 2013 15:04:52 -0800 |
parents | 18598163e3ef |
children |
line wrap: on
line source
#{ sum <- :l { l fold: 0 with: :acc el { acc + el } } main <- { print: (string: (sum: [])) . "\n" print: (string: (sum: [1 2 3 4])) . "\n" print: (string: (sum: 1 | 2 | 3 | 4 | [])) . "\n" print: (string: (sum: [1 2] . [3 4])) . "\n" } }