Re: Which D compiler is the most maintained and future-proof? [DMD GDC and LDC]

2023-07-24 Thread devosalain via Digitalmars-d-learn
I could be interesting to also compare the licenses of the 3 compilers.

Re: Print debug data

2023-07-18 Thread devosalain via Digitalmars-d-learn
``` import std.stdio:writeln; import core.memory; void main(){ ulong a=GC.Stats.freeSize; writeln(a); } ``` returns error: Error: need this for freeSize of type ulong