2013-04-24 09:22:29 +00:00
|
|
|
void main() {
|
2013-04-24 14:07:31 +00:00
|
|
|
#ifdef SIMPLE
|
2013-04-24 09:22:29 +00:00
|
|
|
print(__FUNC__, "\n");
|
2013-04-24 14:07:31 +00:00
|
|
|
#elifdef CONCATENATED
|
|
|
|
print(__FUNC__ "\n");
|
|
|
|
#else
|
|
|
|
# error this is wrong
|
|
|
|
#endif
|
2013-04-24 09:22:29 +00:00
|
|
|
}
|