Last active
August 22, 2021 13:45
-
-
Save juskek/6b7d542e1975053b7f9c5daf4f8a07c3 to your computer and use it in GitHub Desktop.
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
void main() { | |
print('Hello World!'); | |
List<int> testList = List.generate(5, (index) => index); | |
print(testList); | |
} | |
// OUTPUT: | |
// Hello World! | |
// [0,1,2,3,4] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment