ox

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

ex11.ox (146B)


      1 // variable reassignment to ident after declarations
      2 
      3 void main() {
      4     str harry = "Harry is Barry.";
      5     str barry = harry;
      6     print(barry);
      7 }