Skip to content

Instantly share code, notes, and snippets.

@Sfshaza
Last active September 12, 2016 23:43
Show Gist options
  • Save Sfshaza/d1c5d3124c8abf2d58f9b98936339232 to your computer and use it in GitHub Desktop.
Save Sfshaza/d1c5d3124c8abf2d58f9b98936339232 to your computer and use it in GitHub Desktop.
anonymous functions
main() {
var list = ['apples', 'oranges', 'grapes', 'bananas', 'plums'];
list.forEach((i) {
print(list.indexOf(i).toString() + ': ' + i);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment