CS153/hw5/hw5programs/compile_func_argument.oat

10 lines
154 B
Text
Raw Permalink Normal View History

int call((int) -> int f, int arg) {
return f(arg);
}
int inc(int x) { return x + 1; }
int program(int argc, string[] argv) {
return call(inc, 3);
}