Created
February 6, 2025 18:11
-
-
Save Miguel-Dmz/d301d3ee81651d2b9c06ac7477be9f2b to your computer and use it in GitHub Desktop.
función básica de dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
salida
