Skip to content

Instantly share code, notes, and snippets.

@juskek
Last active August 22, 2021 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juskek/6b7d542e1975053b7f9c5daf4f8a07c3 to your computer and use it in GitHub Desktop.
Save juskek/6b7d542e1975053b7f9c5daf4f8a07c3 to your computer and use it in GitHub Desktop.
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