Skip to content

Instantly share code, notes, and snippets.

@devjaime
Created March 21, 2021 04:43
Show Gist options
  • Select an option

  • Save devjaime/f927cef12306dac08cad741371f94172 to your computer and use it in GitHub Desktop.

Select an option

Save devjaime/f927cef12306dac08cad741371f94172 to your computer and use it in GitHub Desktop.
Aquí hay un programa simple que muestra cómo imprimir un árbol de Navidad
void main() {
for (var i = 1; i <= 5; i++) {
print('🎄' * i);
}
}
// Output:
// 🎄
// 🎄🎄
// 🎄🎄🎄
// 🎄🎄🎄🎄
// 🎄🎄🎄🎄🎄
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment