diff options
Diffstat (limited to 'test/D/Issues/2994/image/main.d')
-rw-r--r-- | test/D/Issues/2994/image/main.d | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/D/Issues/2994/image/main.d b/test/D/Issues/2994/image/main.d new file mode 100644 index 0000000..f0aa23a --- /dev/null +++ b/test/D/Issues/2994/image/main.d @@ -0,0 +1,11 @@ +/* This program prints a + hello world message + to the console. */ + +import std.stdio; + +void main() +{ + writeln("Hello, World!"); +} + |