Hello, World!

Salih Dincer salihdb at hotmail.com
Tue Mar 29 09:25:56 UTC 2022


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;
}//*/
```



More information about the Digitalmars-d mailing list