Lawrence Aberba

Authored Content

Authored Comments

Or make it a one-liner:

import std.stdio : writeln;
import std.uni : asLowerCase, asCapitalized;

void main()
{
"D IS COOL"
.asLowerCase
.asCapitalized
.writeln;
}

Hi Steeve, I see similar comments quite often. Most of the D programmers are/were also C++ guys also. Part of why D has one of the strongest C/C++ code interoperability.