ox

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

ex-closure.ox (80B)


      1 void main() {
      2 
      3     void hello() {
      4         print("hello");
      5     }
      6 
      7     hello();
      8 }