Update main.d

This commit is contained in:
Ki Rill 2020-07-10 12:46:30 +06:00 committed by GitHub
parent 774aecf3e8
commit a6512db88e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -10,5 +10,5 @@ void main() {
// Mary's members can be accessed through get... functions, but can't be modified // Mary's members can be accessed through get... functions, but can't be modified
Person2 Mary = Person2("Mary", 21); Person2 Mary = Person2("Mary", 21);
writeln("Person: ", Mary.name, ", ", Mary.age); // ERROR! => no such property: name, age (because it's private) 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 writeln("Person: ", Mary.getName(), ", ", Mary.getAge()); // works! => a copy/value is returned
} }