diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/catalog.d | 2 | ||||
-rwxr-xr-x | src/helloworld.d | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/catalog.d b/src/catalog.d index ff48a58..fd60545 100644 --- a/src/catalog.d +++ b/src/catalog.d @@ -2,7 +2,7 @@ module catalog; public static class Catalog { - public static void Init(char[] p, char[] localedir) + public static void Init(char[] packageid, char[] localedir) { } 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) { |