Created
September 7, 2023 15:15
-
-
Save jeffotoni/674bbf75def2274028f898821803adeb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Object subclass: Pessoa [ | |
| nome idade | | |
Pessoa class >> new [ | |
^super new initialize | |
] | |
Pessoa >> initialize [ | |
nome := ''. | |
idade := 0. | |
] | |
"Getters" | |
Pessoa >> nome [ | |
^nome | |
] | |
Pessoa >> idade [ | |
^idade | |
] | |
"Setters" | |
Pessoa >> nome: umNome [ | |
nome := umNome. | |
] | |
Pessoa >> idade: umaIdade [ | |
idade := umaIdade. | |
] | |
] | |
| jeff | | |
jeff := Pessoa new. | |
jeff nome: 'jeffotoni'. | |
jeff idade: 35. | |
Transcript show: jeff nome; cr. | |
Transcript show: jeff idade printString; cr. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment