ox

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

ex2.ox (201B)


      1 // test var decl and print
      2 
      3 void main() {
      4     string steve = "His name is Steeeve";
      5     string harry = "His name is Harry";
      6     string jezza = "His name is Jezza";
      7     int bob = 4;
      8     print(harry);
      9 }