ox

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

ex-closure-args.ox (101B)



void main() {

    int add(int a, int b) {
        return a + b;
    }

    print(add(5, 5));
    
}