learn-dlang/lesson#21 - More on Imports/school.d

12 lines
164 B
D

module school;
// public access to the contents of student module
public import student;
struct School {
Student student;
this(Student s) {
student = s;
}
}