Skip to content

Instantly share code, notes, and snippets.

@leonus96
Last active October 12, 2023 02:50
Show Gist options
  • Save leonus96/dd73eeefa0d09708e08b38c3bd7a2336 to your computer and use it in GitHub Desktop.
Save leonus96/dd73eeefa0d09708e08b38c3bd7a2336 to your computer and use it in GitHub Desktop.
Hola Mundo
/// SINTAXIS DE UN PROGRAMA EN DART
/// 1. Inicio del programa
/// 2. Intrucción 1;
/// 3. Intrucción 2;
/// 4. Intrucción 3;
/// ...
/// N. Fin del programa
/// Función "main" Marca el inicio y fin
/// de nuestro programa
void main() {
print('Hola Alumnos!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment