gmqcc/tests/variadic.qc

6 lines
71 B
C++
Raw Normal View History

2012-11-19 02:11:24 +00:00
void(...) print = #1;
void() main = {
print("hello", " world");
}