Skip to content

Instantly share code, notes, and snippets.

@Renata-Ronquillo-5-J
Created February 6, 2025 18:10
Show Gist options
  • Save Renata-Ronquillo-5-J/e83f9e8957e48759167a4075c4aa0b8d to your computer and use it in GitHub Desktop.
Save Renata-Ronquillo-5-J/e83f9e8957e48759167a4075c4aa0b8d to your computer and use it in GitHub Desktop.
Función básica en dart
//Funciones basicas que no devuelvan valor
// pero ejecutar las instrucciones entre llaves
void saludar(){
print("Buenos Días");
}
void main(){
print("Renata, 22308051281307");
// llamar a la funcion saludar
saludar();
}
@Renata-Ronquillo-5-J
Copy link
Author

Salida
image

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