ox

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

ex-call-simple.ox (90B)


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