Update main.d
This commit is contained in:
parent
774aecf3e8
commit
a6512db88e
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue