gmqcc/tests/predef_func.qc

9 lines
142 B
C++

void main() {
#ifdef SIMPLE
print(__FUNC__, "\n");
#elifdef CONCATENATED
print(__FUNC__ "\n");
#else
# error this is wrong
#endif
}