diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/helloworld.d | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helloworld.d b/src/helloworld.d index df15b0b..e1113cc 100755 --- a/src/helloworld.d +++ b/src/helloworld.d @@ -1,8 +1,9 @@ +import config; import std.stdio; void main(char[][] args) { - writefln("Hello World, Reloaded"); + writefln("Hello World, Version: " ~ config.VERSION); // auto type inference and built-in foreach foreach (argc, argv; args) |