Mercurial > repos > tabletprog
view samples/range.tp @ 351:04ba2118c5fe
Rename (dict hash) size to (dict hash) length and make it actually work
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Mon, 13 Apr 2015 22:41:00 -0700 |
parents | 21e20c9bb2ba |
children |
line wrap: on
line source
#{ main <- { foreach: (range from: 10 to: 20) :idx el { print: (string: idx) . ": " . el . "\n" } sum <- (range from: 0 to: 100 by: 3) fold: 0 with: :acc el { acc + el } print: "Sum of range from: 0 to: 100 by: 3 is " . sum . "\n" } }