Skip to content

Instantly share code, notes, and snippets.

@feliperech
Created July 2, 2022 16:14
Show Gist options
  • Save feliperech/e86d062e813184747dac8362bc581422 to your computer and use it in GitHub Desktop.
Save feliperech/e86d062e813184747dac8362bc581422 to your computer and use it in GitHub Desktop.
A01 - Variaveis e Intro

A01 - Variaveis e Intro

Created with <3 with dartpad.dev.

void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment