Skip to content

Instantly share code, notes, and snippets.

@inialdan
Created March 3, 2021 13:09
Show Gist options
  • Save inialdan/b95248b24c37414e23c3bbe3e731fd9d to your computer and use it in GitHub Desktop.
Save inialdan/b95248b24c37414e23c3bbe3e731fd9d to your computer and use it in GitHub Desktop.
Aldan 065118112 - Use Dart for functional programming
String scream(int length) => "A${'a' * length}h!";
main() {
final values = [1, 2, 3, 5, 10, 50];
values.skip(1).take(3).map(scream).forEach(print);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment