Skip to content

Instantly share code, notes, and snippets.

@Miguel-Dmz
Created February 6, 2025 18:11
Show Gist options
  • Save Miguel-Dmz/d301d3ee81651d2b9c06ac7477be9f2b to your computer and use it in GitHub Desktop.
Save Miguel-Dmz/d301d3ee81651d2b9c06ac7477be9f2b to your computer and use it in GitHub Desktop.
función básica de dart
//funciones basicas que no devuelve valor,
//pero ejecuta las instrucciones entre llaves
void saludar (){
print("Buenos dias");
}
void main() {
print("Miguel Dominguez 1173");
// llama a la fumcion saludar
saludar();
}
@Miguel-Dmz
Copy link
Author

salida
image

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