Skip to content

v1.1.2

Choose a tag to compare

@thewhynow thewhynow released this 27 Jun 15:38
29384b3

range - based for loops have been added!
with syntax borrowed heavily, if not entirely, from python this is what they look like:
for i in [1, 2, 3, 4]{ out(i); } -> 1, 2, 3, 4

you can also use the by keyword to change the order and step
for i in [1, 2, 3, 4] by -1 { out(i) } -> 4, 3, 2, 1

and other minor bugs have been fixed...thats pretty much it for this language I guess. I might revisit this project in the future.