Hello, How to test if variable has void value?
string text = void; if(text == void) { writeln("Is void"); }
Tried this:
if(is(text == void))
but doesn't work.
Hello, How to test if variable has void value?
string text = void; if(text == void) { writeln("Is void"); }
Tried this:
if(is(text == void))
but doesn't work.