ox

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

ex-for-advanced2.ox (213B)



// infinite loop break test

void main() {
    ~int a = 1;
    for(;;) {
        print("working");
        if (a++ == 5) {
            break;
        }
        print("... not yet");
    }
    print("finished");
}