Created
April 21, 2020 14:51
-
-
Save kjelly/b322605f06b6e9fc7e7edf10a7efbb22 to your computer and use it in GitHub Desktop.
very simple dart
This file contains 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
void main1() { | |
int i = 0; | |
for (int i = 0; i < 5; i++) { | |
print(i); | |
} | |
print(i); | |
} | |
void main2() { | |
for (int i = 0; i < 5; i++) { | |
print(i); | |
} | |
} | |
void main() { | |
main1(); | |
main2(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment