void writeln(T...)(T args) { if (__ctfe){ debug { __ctfeWriteln(args); } } else { // ... current implementation } }Are you sureeeee?
any usage example?
consider a normal usage:
writeln("done.");
I just want a runtime output. how can I tell the compiler not to
print "done." at compile time?
