diff --git a/lesson#18 - Encapsulation and Protection Attributes/main.d b/lesson#18 - Encapsulation and Protection Attributes/main.d index db14f18..265d718 100644 --- a/lesson#18 - Encapsulation and Protection Attributes/main.d +++ b/lesson#18 - Encapsulation and Protection Attributes/main.d @@ -10,5 +10,5 @@ void main() { // Mary's members can be accessed through get... functions, but can't be modified Person2 Mary = Person2("Mary", 21); writeln("Person: ", Mary.name, ", ", Mary.age); // ERROR! => no such property: name, age (because it's private) - writeln("Person: ", Mary.getName(), ", ", Mary.getAge()); // works! => a copy/value is returned -} \ No newline at end of file + writeln("Person: ", Mary.getName(), ", ", Mary.getAge()); // works! => a copy/value is returned +}