On 3/25/14, Dicebot <[email protected]> wrote: > Yeah, I'd likely object to it on code review and ask to re-write > with plain if condition.
This is my all-time favorite anti-feature:
void main()
{
import std.stdio;
bool False = false;
writeln("the value is: " ~ False ? "true" : "false");
}
