ox

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

ex-blocks-inner.ox (146B)


      1 void main() {
      2 
      3     int x = 1;
      4     {
      5         int y = 2;
      6         print(x);
      7         print(y);
      8     }
      9     print(x);
     10     print("should print 1 2 1");
     11 }