A trick i use often: ```D import std;
void main() { import uni = std.uni; writeln("Learning D is fun".split!(uni.isWhite)); } ```Under-rated way of importing things, you don't bloat your scope anymore
A trick i use often: ```D import std;
void main() { import uni = std.uni; writeln("Learning D is fun".split!(uni.isWhite)); } ```Under-rated way of importing things, you don't bloat your scope anymore