From a6512db88e23bef463a3b9e1529230e4e31a93ae Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Fri, 10 Jul 2020 12:46:30 +0600 Subject: [PATCH] Update main.d --- lesson#18 - Encapsulation and Protection Attributes/main.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}