ox

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

ex-call-args-same-names.ox (212B)



void func1(str message) {
    print("message was:");
    print(message);
}

void func2(str message) {
    print("another message:");
    print(message);
}

void main() {
    func1("hello");
    func2("there");
}