Skip to content

Instantly share code, notes, and snippets.

@Gabriel-Montes
Created February 6, 2025 18:21
Show Gist options
  • Save Gabriel-Montes/e9e7d6918aeb070dfb40a1049eca6533 to your computer and use it in GitHub Desktop.
Save Gabriel-Montes/e9e7d6918aeb070dfb40a1049eca6533 to your computer and use it in GitHub Desktop.
Función saludar() mas función suma() en Dart
//funciones basicas que no devuelvan valor
void saludar() {
print('Buenos Dias');
}
void suma() {
int n1 = 2;
var n2 = 4;
int s = n1 + n2;
print('La suma de $n1 + $n2 es $s');
}
void main() {
print('Gabriel Montes 22308051281276');
//llamar a la funcion saludar()
saludar();
//llamar a la funcion suma
suma();
}
@Gabriel-Montes
Copy link
Author

función suma
image

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