ox

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

ex-blocks-inner.ox (113B)


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