ox

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

ex-cond-simple2.ox (164B)


      1 // more conditional test, else case should be taken
      2 
      3 void main() {
      4     int a = 1;
      5     if (a == 2) {
      6         print("no");
      7     } else {
      8         print("yes");
      9     }
     10 }