Skip to content

Instantly share code, notes, and snippets.

@SergioDelgado098
Created February 6, 2025 18:11
Show Gist options
  • Save SergioDelgado098/4d727fa6d2b59940e6c6af5355f5ff8b to your computer and use it in GitHub Desktop.
Save SergioDelgado098/4d727fa6d2b59940e6c6af5355f5ff8b to your computer and use it in GitHub Desktop.
Funcion basica en dart
// Funciones basicas que no devuelva valor
// pero ejecuta las instrucciones entre llaves
void saludar() {
print ("Buenos dias");
}
void main () {
print (" Sergio Gael Delgado Valle 22308051281169");
// Llamar a la funcion saludar
saludar ();
}
@SergioDelgado098
Copy link
Author

Salida
image

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