I'm finally biting the bullet and replacing "whilst" with "while" and "forall"
with "for".
If you upgrade Felix from later today AEST any code using the old keywords will
break.
--
john skaller
skal...@users.sourceforge.net
---
I am about to commit two interesting changed to the syntax.
In expressions "endif" and "endmatch" are now optional.
So you can write:
println (if 1 > 2 then 0 else if 1 > 1 then 2 else 1);
No need for endif. It is still useful:
println (if 1 > 2 then 0 else 1 endif + 42);
which is equivalent t