Created with <3 with dartpad.dev.
Last active
October 12, 2023 02:50
-
-
Save leonus96/dd73eeefa0d09708e08b38c3bd7a2336 to your computer and use it in GitHub Desktop.
Hola Mundo
This file contains hidden or 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
/// 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