CS153/hw5/hw5programs/compile_var_fptr.oat

7 lines
113 B
Text
Raw Normal View History

int id(int x) { return x; }
int program(int argc, string[] argv) {
var id_local = id;
return id_local(1);
}