1 2 3 4 5 6 7 8 9 10 11
/* This program prints a hello world message to the console. */ import std.stdio; void main() { writeln("Hello, World!"); }