Skip to content

Instantly share code, notes, and snippets.

@Sfshaza
Last active June 2, 2023 04:49
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Sfshaza/0ca5b334ec413c084575f575e0240501 to your computer and use it in GitHub Desktop.
Save Sfshaza/0ca5b334ec413c084575f575e0240501 to your computer and use it in GitHub Desktop.
Java-to-Dart codelab: Starting point
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