Skip to content

Instantly share code, notes, and snippets.

@GabrielAlvrado89
Created February 6, 2025 18:10
Show Gist options
  • Save GabrielAlvrado89/052aa15d6e20dcbc3240ae83692c1592 to your computer and use it in GitHub Desktop.
Save GabrielAlvrado89/052aa15d6e20dcbc3240ae83692c1592 to your computer and use it in GitHub Desktop.
Funcion basica en dart
// Funciones basicas que no devuelve valor,
// pero ejecuta las instrucciones entre llaves
void saludar(){
print("Buenos dias");
}
void main() {
print("Angel Alvarado 22308051281127");
// Llamar a la funcion saludar()
saludar();
}
@GabrielAlvrado89
Copy link
Author

Salida
image

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