Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Forked from miquelbeltran/main.dart
Created December 10, 2019 22:32
Show Gist options
  • Save kwalrath/c419f595f95e8317c54192491ae017cd to your computer and use it in GitHub Desktop.
Save kwalrath/c419f595f95e8317c54192491ae017cd 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