ox

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

ex-return-given-int.ox (135B)


      1 int gimme(int ret_value) {
      2     return ret_value;
      3 }
      4 
      5 void main() {
      6     print("expected returned value of 12:");
      7     print(gimme(12));
      8 }