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 74f6428..f2f328b 100755
--- a/src/helloworld.d
+++ b/src/helloworld.d
@@ -1,10 +1,11 @@
import config;
import testlibrary;
+import testshlibrary;
import std.stdio;
void main(char[][] args)
{
- writefln(HelloWorldFactory.getName() ~ ", Version: " ~ config.VERSION);
+ writefln(HelloWorldFactory.getName() ~ ", " ~ HelloWorldSharedObjectFactory.getVersion() ~ " " ~ config.VERSION);
// auto type inference and built-in foreach
foreach (argc, argv; args)