From 63e6315fae5a3c583419bfc7eadf7e53686737ed Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Thu, 30 Jul 2020 11:56:57 +0600 Subject: [PATCH] Aliased, public imports --- lesson#21 - More on Imports/main.d | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/lesson#21 - More on Imports/main.d b/lesson#21 - More on Imports/main.d index 3a3f15e..b2980ab 100644 --- a/lesson#21 - More on Imports/main.d +++ b/lesson#21 - More on Imports/main.d @@ -1,16 +1,23 @@ // Aliased and Public imports -import io = std.stdio; // creating an alias io for std.stdio module -import std.stdio: println = writeln; // creating an alias println for writeln function +// creating an alias io for std.stdio module +import io = std.stdio; -import school; // importing school and student +// creating an alias println for writeln function +import std.stdio: println = writeln; + +// importing school and student +import school; void main() { - io.writeln("Hello, World!\n"); // calling writeln using io (std.stdio.writeln) + // calling writeln using io (std.stdio.writeln) + io.writeln("Hello, World!\n"); - println("Using println alias (writeln);\n"); // println => writeln - //writeln("Trying to call writeln.... oops..."); // error => writeln is undefined, println is defined + // println => writeln + println("Using println alias (writeln);\n"); + //writeln("Trying to call writeln.... oops..."); // error => writeln is undefined, println is defined - Student Julia; // student is imported along with school, because => public import student + // student is imported along with school, because => public import student + Student Julia; School unknownSchool = School(Julia); -} \ No newline at end of file +}