ox

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

ex-call-simple.ox (90B)



void callee_simple() {
    print("hello world");
}

void main() {
    callee_simple();
}