ox

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

ex-cond-simple1.ox (123B)


      1 void main() {
      2     int a = 1;
      3     if (a == 1) {
      4         print("yes is expected");
      5     } else {
      6         print("no");
      7     }
      8 }