Aliased, public imports

This commit is contained in:
rillk500 2020-07-30 11:55:08 +06:00
parent 99c0504031
commit 991644f01a
3 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// 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
import school; // importing school and student
void main() {
io.writeln("Hello, World!\n"); // calling writeln using io (std.stdio.writeln)
println("Using println alias (writeln);\n"); // println => writeln
//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
School unknownSchool = School(Julia);
}

View File

@ -0,0 +1,12 @@
module school;
// public access to the contents of student module
public import student;
struct School {
Student student;
this(Student s) {
student = s;
}
}

View File

@ -0,0 +1,5 @@
module student;
struct Student {
// ...
}