ox

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

ex-closure-args.ox (101B)


      1 void main() {
      2 
      3     int add(int a, int b) {
      4         return a + b;
      5     }
      6 
      7     print(add(5, 5));
      8     
      9 }