Skip to content

Instantly share code, notes, and snippets.

@CESARIIN0
Last active February 6, 2025 18:46
Show Gist options
  • Save CESARIIN0/1c086638dba70ae79e8f1de3416a4aa9 to your computer and use it in GitHub Desktop.
Save CESARIIN0/1c086638dba70ae79e8f1de3416a4aa9 to your computer and use it in GitHub Desktop.
void saludar(){
print("Buenos Dias");
}
void suma(){
int n1 = 2;
int n2 = 5;
int s = n1 + n2;
print ("La suma de $n1 + $n2 es $s");
}
void main() {
print("Cesar Reyes Vazquez 1294");
//llamar a la funcion saludar}
saludar();
//Llama a la funcion suma
suma();
}
@CESARIIN0
Copy link
Author

image

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