ox

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

ex-return-int.ox (140B)


      1 int gimme55() {
      2     print("heloy");
      3     return 5 * 5;
      4 }
      5 
      6 void main() {
      7     print("expected returned value of 25:");
      8     print(gimme55());
      9 }