Skip to content

Instantly share code, notes, and snippets.

@jebright
Last active September 23, 2018 15:50
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 jebright/c15d63ab7b2be0ad69482f2ede7e148c to your computer and use it in GitHub Desktop.
Save jebright/c15d63ab7b2be0ad69482f2ede7e148c to your computer and use it in GitHub Desktop.
Dart Fundamentals - Lists -loop
void main() {
List<String> names = ["Joe", "Frankie", "Tom"];
for (var n in names) {
print('Hello ${n}');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment