ox

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

ex-subscript-simple.ox (69B)



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