ox

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

ex-return-given-int.ox (135B)



int gimme(int ret_value) {
    return ret_value;
}

void main() {
    print("expected returned value of 12:");
    print(gimme(12));
}