Skip to content

Instantly share code, notes, and snippets.

@miquelbeltran
Last active December 10, 2019 22:32
Show Gist options
  • Save miquelbeltran/597f152c1df414fc4d7d78d1be22ac22 to your computer and use it in GitHub Desktop.
Save miquelbeltran/597f152c1df414fc4d7d78d1be22ac22 to your computer and use it in GitHub Desktop.
void main() {
var iterable = ['Salad', 'Popcorn', 'Toast'];
for (var element in iterable) {
print(element);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment