ox

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

ex-return-int.ox (140B)



int gimme55() {
    print("heloy");
    return 5 * 5;
}

void main() {
    print("expected returned value of 25:");
    print(gimme55());
}