Skip to content

Instantly share code, notes, and snippets.

@hernandazevedo
Created March 29, 2019 12:53
Show Gist options
  • Save hernandazevedo/cf46a68c80674bf132f93f9f8236fc6f to your computer and use it in GitHub Desktop.
Save hernandazevedo/cf46a68c80674bf132f93f9f8236fc6f to your computer and use it in GitHub Desktop.
void main() {
Carro c1 = Carro("Fusca");
Carro c2 = Carro("Brasilia");
Carro c3 = Carro("Chevete");
//List<Carro> carros = List<Carro>();
//carros.add(c1);
//carros.add(c2);
//carros.add(c3);
var carros = [c1, c2, c3];
print ("Lista $carros");
for(Carro c in carros) {
print(">> ${c.nome}");
}
}
class Carro {
String nome;
Carro(this.nome);
String toString() {
return nome;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment