Created
February 6, 2025 18:11
-
-
Save Camila-rodriguezz/5d7bac321f0850b2117f396e5e0319db to your computer and use it in GitHub Desktop.
Función básica en Dart
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 devuelve valor | |
// pero ejecuta las instrucciones entre llaves | |
void saludar(){ | |
print("Buenos dias"); | |
} | |
void main() { | |
print("Camila Rodriguez Ruiz"); | |
//llamar a la funcion saludar | |
saludar(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment