ox

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

ex-for-simple2.ox (257B)


      1 void main() {
      2     ~int x;
      3     print("initial value:");
      4     // do we initialise at 0 or not?
      5     print(x);
      6     for(int x = 3; x < 5; x++) {
      7         //TODO the x defined in the for init is never actually used
      8         print(x);
      9         print("bozo!");
     10     }
     11 }