ox

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

ex10.ox (111B)


      1 // print after print
      2 void main() {
      3     print("This is a test");
      4     print("");
      5     print("Oh yes, tested.");
      6 }