On Tuesday, 28 November 2017 at 05:10:39 UTC, bauss wrote:
null != void


also...void is a completely useless concept for initialisation.

what can you determine about the nothingness of void? ... nothing.


writeln(typeof(void).stringof); // ?? what do I know now? nothing.

vs

Nullable!int x;
writeln(typeof(x).stringof); // Nullable!int .. now I know something.


Reply via email to