Created
February 6, 2025 18:11
-
-
Save Abril-Cisneroos/b528be3db065e32567b4e1455889795f to your computer and use it in GitHub Desktop.
Función básica en 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 devuelva valor, | |
//pero ejecuta las instrucciones entre llaves | |
void saludar(){ | |
print("Buenos dias"); | |
} | |
void main() { | |
print("Abril Cisneros 22308051281162"); | |
// llamar a la funcion saludar | |
saludar(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment