Created
May 3, 2018 23:56
-
-
Save kwalrath/bd0d627c9af8d264c2b3dde7c0939375 to your computer and use it in GitHub Desktop.
Java-to-Dart codelab: Scream example - functional code with more Iterable API
This file contains hidden or 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
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