From c5905fd34966be9814c9728d23c96f02aa17d61d Mon Sep 17 00:00:00 2001 From: rillk500 Date: Tue, 28 Jul 2020 15:21:37 +0600 Subject: [PATCH] aliased and public imports --- lesson#21 - Aliased and Public Imports/main.d | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lesson#21 - Aliased and Public Imports/main.d diff --git a/lesson#21 - Aliased and Public Imports/main.d b/lesson#21 - Aliased and Public Imports/main.d new file mode 100644 index 0000000..062f253 --- /dev/null +++ b/lesson#21 - Aliased and Public Imports/main.d @@ -0,0 +1,7 @@ +// ****** aliased imports, public imports ****** + +import io = std.stdio; + +void main() { + io.writeln("hello, world!\n"); +}