Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Forked from miquelbeltran/main.dart
Last active May 26, 2020 23:15
Show Gist options
  • Save kwalrath/786f67892848f93f71b1e7b9d3fc330c to your computer and use it in GitHub Desktop.
Save kwalrath/786f67892848f93f71b1e7b9d3fc330c to your computer and use it in GitHub Desktop.
void main() {
Iterable iterable = ['Salad', 'Popcorn', 'Toast'];
print('The first element is ${iterable.first}');
print('The last element is ${iterable.last}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment