mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 21:51:03 +03:00
9 lines
130 B
D
9 lines
130 B
D
// A common yet underrated D program
|
|
module defaults.hello;
|
|
|
|
import std.stdio;
|
|
|
|
void main()
|
|
{
|
|
writeln("Hello, World from D!");
|
|
}
|