summaryrefslogtreecommitdiffstats
path: root/test/D/Issues/2944/image/main.d
blob: f0aa23aaa15fa3197d44d30b2b1a5d34bb5013dd (plain)
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!");
}