Skip to content

Instantly share code, notes, and snippets.

@felipecastrosales
Created November 19, 2021 01:21
Show Gist options
  • Save felipecastrosales/2ab1142e8af045005a1428d015ecf98c to your computer and use it in GitHub Desktop.
Save felipecastrosales/2ab1142e8af045005a1428d015ecf98c to your computer and use it in GitHub Desktop.
Introdução - Classes.dart
void main() {
var pessoa = Pessoa();
print(pessoa);
}
class Pessoa {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment