ox

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

ex-return-empty.ox (246B)



void returnnothing() {
    print("I will return nothing");
    return;
}


void main() {
    print("calling return nothing:");
    returnnothing();
    return;
    return;
    return;
    return;
    return;
    return;
    return;
    return;
}