ox

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

ex12.ox (153B)


      1 // variable reassignment to literal after declaration
      2 
      3 void main() {
      4     string jake = "before change";
      5     jake = "expected result";
      6     print(jake);
      7 }