10 lines
154 B
Text
10 lines
154 B
Text
|
|
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);
|
||
|
|
}
|