On Friday, 25 March 2022 at 20:07:39 UTC, Anonymous wrote:
> **Input:**
> ```d
> void main()
> {
> import std.stdio : writeln;
> writeln("Hello, World!\n");
> //I'm not sure if the ^^ is necessary or not
> }
Not efficient enough. :^)
```d
extern (C) { int write(int, immutable char*, int); }
void main()
{
write(1,&"Hello, world!\n"[0],14);
}
```