ox

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

ex-decl-no-init2.ox (63B)


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