ox

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

ex5.ox (153B)


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