Skip to content

Instantly share code, notes, and snippets.

@jeffotoni
Created September 7, 2023 15:15
Show Gist options
  • Save jeffotoni/674bbf75def2274028f898821803adeb to your computer and use it in GitHub Desktop.
Save jeffotoni/674bbf75def2274028f898821803adeb to your computer and use it in GitHub Desktop.
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