Aliased, public imports
This commit is contained in:
parent
99c0504031
commit
991644f01a
|
@ -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);
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
module student;
|
||||||
|
|
||||||
|
struct Student {
|
||||||
|
// ...
|
||||||
|
}
|
Loading…
Reference in New Issue