ox

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

ex12.ox (151B)



// variable reassignment to literal after declaration

void main() {
    ~str jake = "before change";
    jake = "expected result";
    print(jake);
}