summaryrefslogtreecommitdiffstats
path: root/src/helloworld.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/helloworld.d')
-rwxr-xr-xsrc/helloworld.d3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helloworld.d b/src/helloworld.d
index e1113cc..74f6428 100755
--- a/src/helloworld.d
+++ b/src/helloworld.d
@@ -1,9 +1,10 @@
import config;
+import testlibrary;
import std.stdio;
void main(char[][] args)
{
- writefln("Hello World, Version: " ~ config.VERSION);
+ writefln(HelloWorldFactory.getName() ~ ", Version: " ~ config.VERSION);
// auto type inference and built-in foreach
foreach (argc, argv; args)