Skip to content

Instantly share code, notes, and snippets.

Created October 8, 2016 18:14
Show Gist options
  • Save anonymous/8892f72322c11906c3186b2afbb374ad to your computer and use it in GitHub Desktop.
Save anonymous/8892f72322c11906c3186b2afbb374ad to your computer and use it in GitHub Desktop.
fatdragon-dart
void main() {
var v = [ 1,2,3,4,5,6,7,8,9,10 ];
print(v);
print(v.contains(5));
print(v.where((x) => x % 2 == 0));
print(v.any((x) => x > 10));
print(v.map((x) => x * x));
print(v.length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment