ox

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

ex-return-func-call.ox (132B)


      1 int yes_we_can() {
      2     return 5;
      3 }
      4 
      5 int can_we_do_this() {
      6     return yes_we_can();
      7 }
      8 
      9 void main() {
     10     print(can_we_do_this());
     11 }