gmqcc/testsuite/functions-as-parameters/main.qc

14 lines
175 B
C++
Raw Normal View History

2012-11-01 17:24:48 +00:00
void(string, string) print = #1;
string() getter = {
return "correct";
};
void(string() f) printer = {
print(f(), "\n");
};
void() main = {
printer(getter);
};