ox

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

ex-return-func-call.ox (136B)



fn yes_we_can() i64 {
    return 5;
}

fn can_we_do_this() i64 {
    return yes_we_can();
}

fx main() {
    print(can_we_do_this());
}