On Monday, 31 May 2021 at 03:44:15 UTC, btiffin wrote:
> Is there a way to make that less codey, more jokey, *but still
> compile and execute the hip hip array*?
```D
import std;
alias cheer = each!writeln;
void main() { D(); }
void
D() { cheer = ["hip", "hip"].array; }
```