ox

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

ex11.ox (152B)


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