ox

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

ex11.ox (146B)



// variable reassignment to ident after declarations

void main() {
    str harry = "Harry is Barry.";
    str barry = harry;
    print(barry);
}