ox

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

ex-call-args-same-names.ox (218B)


      1 void func1(string message) {
      2     print("message was:");
      3     print(message);
      4 }
      5 
      6 void func2(string message) {
      7     print("another message:");
      8     print(message);
      9 }
     10 
     11 void main() {
     12     func1("hello");
     13     func2("there");
     14 }