ox

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

ex-return-early.ox (132B)



int example() {
    print("we should only print one line");
    return 1;
    print("DEAD CODE");
}

void main() {
    example();
}