I'm happy to announce after the latest feedback on ZPE, that you can now use the C style increment on a for loop:
ZenLang
for($i = 0; $i < 10; $i++) print($i) end for
Of course, since ZPE has been designed for ease of use, users can still use the original style of incrementing or decrementing in for loops:
ZenLang
for($i = 0, $i < 10, 1) print($i) end for
Powered by DASH 2.0