Last active
November 22, 2021 22:45
-
-
Save felipecastrosales/5e62fa889624f239cf176a8277921c6c to your computer and use it in GitHub Desktop.
POO - Atributos
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
void main() { | |
var pessoa = Pessoa(); | |
print(pessoa.nome); // 'Felipe' | |
} | |
class Pessoa { | |
String nome = 'Felipe'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment