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() { | |
List<int> things = [1, 2, 3]; | |
predefined functions to work with arrays | |
things.forEach() | |
things.reduce() | |
things.last; | |
} |
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
main() { | |
//List<int> things = [1, 2, 3]; | |
print('aaaaa'); | |
//predefined functions to work with arrays | |
//things.forEach() | |
//things.reduce() | |
//things.last; | |
} |