mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
13 lines
175 B
C++
13 lines
175 B
C++
void(string, string) print = #1;
|
|
|
|
string() getter = {
|
|
return "correct";
|
|
};
|
|
|
|
void(string() f) printer = {
|
|
print(f(), "\n");
|
|
};
|
|
|
|
void() main = {
|
|
printer(getter);
|
|
};
|