Created
November 10, 2017 15:14
-
-
Save chalin/5d70bc1889d055c7a18d35d77874af88 to your computer and use it in GitHub Desktop.
Language Tour: Anonymous Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var list = ['apples', 'bananas', 'oranges']; | |
list.forEach((item) { | |
print('${list.indexOf(item)}: $item'); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment