Here's the short version
["hip", "hip"]
the hip hip array (or hooray as suits the lame joke).
Here's some executable code
void array(string[] a) {
import std.stdio : writeln;
foreach(t; a) writeln(t);
}
void main() { D(); }
void
D() { ["hip", "hip"].array; }
Is there a way to make that less codey, more jokey, but still compile and execute the hip hip array?
Have good,
Blue