Created
February 6, 2025 18:21
-
-
Save Derek-garza/4cf2ae0c88b8595086e16a174d4cfd39 to your computer and use it in GitHub Desktop.
Funcion saludar
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 nodevuelven el valor, pero ejecuta las instrucciones entre llaves | |
void saludar(){ | |
print("Beunos dias"); | |
} | |
void main() { | |
print ("Derek Garza M 22308051281196"); | |
//Llamar a la funcion saludar{} | |
saludar(); | |
// llama funcion suma | |
} |
Author
Derek-garza
commented
Feb 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment