Is there any writeln like functions without GC?

Ogi ogion.art at gmail.com
Tue Nov 12 12:15:58 UTC 2019


If your goal is to debug your @nogc code, you can use writeln in 
debug statement:

@nogc void main() {
     debug writeln("hello, debug world!");
}


More information about the Digitalmars-d-learn mailing list