ox

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

ex-if-no-parens.ox (194B)


      1 void main() {
      2     print("we should print something:");
      3     int i = 5;
      4     if(i == 5) print("eureka!");
      5     print("ended block");
      6     if(i == 5) {
      7         print("1");
      8         print("2");
      9     }
     10 }