From e871e41637d8c511a0cf0379c5e4ca872f6cf469 Mon Sep 17 00:00:00 2001 From: mszulecki Date: Fri, 23 Feb 2007 14:42:57 +0000 Subject: Attempt at shared object library building. git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@14 4281df72-ff29-0410-8fee-2d9ac0c5f5a7 --- src/helloworld.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/helloworld.d') 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) -- cgit v1.1-32-gdbae