ox

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

ex3.ox (307B)


      1 // conditional to be handled
      2 
      3 void main() {
      4     print("did it work?");
      5     string password = "123";
      6     if (password == "1234") {
      7         print("it worked!");
      8     } else {
      9         if(password == "123") {
     10             print("the else worked!");
     11         } else {
     12             print("booboo");
     13         }
     14     }
     15 }