ox

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

ex-for-simple1.ox (90B)


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