gmqcc/tests/functions-as-params.qc

12 lines
141 B
C++
Raw Normal View History

string() getter = {
return "correct";
};
void(string() f) printer = {
print(f(), "\n");
};
void() main = {
printer(getter);
};