Skip to content

Instantly share code, notes, and snippets.

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