On Tuesday, 29 March 2022 at 07:25:57 UTC, Max Samukha wrote:
>
> Or simply
> ```d
> int main() => "Hello World".puts < 0;
> ```
For starters, I'd like to point out that it's essentially the
same as this:
```d
import std.stdio;
//int main() => "Hello World".puts < 0;/*
int main() {
"Hello World".puts;
return 0;
}//*/
```