ox

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

ex-return-early.ox (132B)


      1 int example() {
      2     print("we should only print one line");
      3     return 1;
      4     print("DEAD CODE");
      5 }
      6 
      7 void main() {
      8     example();
      9 }