ox

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

ex-for-no-parens.ox (67B)



void main() {
    for(~int i = 0; i < 5; i++)
        print(i);

}