Skip to content

Instantly share code, notes, and snippets.

@Derek-garza
Created February 6, 2025 18:21
Show Gist options
  • Save Derek-garza/4cf2ae0c88b8595086e16a174d4cfd39 to your computer and use it in GitHub Desktop.
Save Derek-garza/4cf2ae0c88b8595086e16a174d4cfd39 to your computer and use it in GitHub Desktop.
Funcion saludar
//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
}
@Derek-garza
Copy link
Author

image

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