Skip to content

Instantly share code, notes, and snippets.

@DDOrozco17
Created February 12, 2024 18:05
Show Gist options
  • Save DDOrozco17/71c1c81f74a56e1e874a2246598a8a51 to your computer and use it in GitHub Desktop.
Save DDOrozco17/71c1c81f74a56e1e874a2246598a8a51 to your computer and use it in GitHub Desktop.
Clase Humano
class Humano{
String? nombre;
int? edad;
double? estatura;
void verDatos(){
print("Nombre : $nombre");
print("Edad : $edad");
print("Estatura : $estatura");
}
}
void main() {
Humano angel = Humano();
angel.nombre="Diego Diaz";
angel.edad=75;
angel.estatura=1.70;
angel.verDatos();
}
@DDOrozco17
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment