ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

ex-for-no-parens.ox (71B)


      1 void main() {
      2     for(int i = 0; i < 5; i++) 
      3         print(i);
      4     
      5 }