Created
February 6, 2025 18:11
-
-
Save Eliziel-Camperos/17dd2aa4d158530e09ff35dc3c0f56be to your computer and use it in GitHub Desktop.
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 ("bom dia"); | |
} | |
void main() { | |
print ("Eliziel Camperos 22308051281159"); | |
// llamar a la funcion saludar | |
saludar(); | |
} |
Author
Eliziel-Camperos
commented
Feb 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment