ox

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

ex-call-simple1.ox (80B)


      1 void callee_test() {
      2     print("hello");
      3 }
      4 
      5 void main() {
      6     callee_test();
      7 }
      8