summaryrefslogtreecommitdiffstats
path: root/src/helloworld.d
diff options
context:
space:
mode:
authorGravatar mszulecki2007-02-26 02:28:05 +0000
committerGravatar mszulecki2007-02-26 02:28:05 +0000
commit09f526cd1dc150b10db6439d2f1dbb0d3107060c (patch)
tree0ce421c2f8555463e4ff97518ef07274046d4625 /src/helloworld.d
parentde41ac9f6d7d3ee046719d69adf504b02ead30a2 (diff)
downloaddskel-09f526cd1dc150b10db6439d2f1dbb0d3107060c.tar.gz
dskel-09f526cd1dc150b10db6439d2f1dbb0d3107060c.tar.bz2
Add gdc version to config.d and show it in helloworld.
git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@17 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'src/helloworld.d')
-rwxr-xr-xsrc/helloworld.d2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helloworld.d b/src/helloworld.d
index 05ed01b..db25741 100755
--- a/src/helloworld.d
+++ b/src/helloworld.d
@@ -13,6 +13,8 @@ void main(char[][] args)
writefln(HelloWorldFactory.getName() ~ ", " ~ HelloWorldSharedObjectFactory.getVersion() ~ " " ~ config.VERSION);
+ writefln("Compiled using: " ~ config.GDC_VERSION);
+
// auto type inference and built-in foreach
foreach (argc, argv; args)
{