ox

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

ex-for-simple3.ox (190B)


      1 // test multiple functions and variables declarations
      2 
      3 int jack = 111;
      4 
      5 void test() {
      6     float alice = 222.0;
      7 }
      8 
      9 void main() {
     10     int peter = 333;
     11 }
     12 
     13 int jill = 444;
     14 
     15 float jane = 125.34;