ox

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

ex-decl-no-init2.ox (64B)



void main() {
    ~int i;
    i = 0;
    i = 1;
    print(i);
}