| Follow @aberbamx
Sunyani, Ghana
Lawrence is a freelance full stack engineer (React, Node.Js, D) and a 100% Linux user. He loves to design and code. Passionate about SaaS and the modern Web.
Lawrence is a freelance full stack engineer (React, Node.Js, D) and a 100% Linux user. He loves to design and code. Passionate about SaaS and the modern Web.
Authored Comments
Yes, you can totally do something like that:
mport std.stdio : writeln;
import std.uni : asLowerCase, asCapitalized;
void main()
{
string mySentence = "D IS COOL";
mySentence
.asLowerCase
.asCapitalized
.writeln;
}
Try running this example at https://run.dlang.io/is/cdLnpD
You're right! It didn't come to mind. I'll include that in my next article.