Skip to content

Instantly share code, notes, and snippets.

@Luis-Herrera1207
Created February 6, 2025 18:10
Show Gist options
  • Save Luis-Herrera1207/94b82d480f2349d3c36e2500a2aea2da to your computer and use it in GitHub Desktop.
Save Luis-Herrera1207/94b82d480f2349d3c36e2500a2aea2da to your computer and use it in GitHub Desktop.
Funcion basica DARTPAD
//FUNCIONES BASICAS QUE NO DEVUELVEN VALOR, SOLO EJECUTA INSTRUCCIONES
void saludar(){
print("BUENOS DIAS");
}
void main() {
print("HERRERA LUIS 22308051281207");
// () - LLAMA FUNCION SALUDAR
saludar();
}
@Luis-Herrera1207
Copy link
Author

Salida
image

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