Created
April 16, 2015 13:49
-
-
Save zoechi/43c9bdc49c63f8285e07 to your computer and use it in GitHub Desktop.
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
// SO 29629868 | |
main() { | |
var languages = <String>["dart", "javascript", "coffeescript", "typescript"]; | |
var tmpList = languages.map((e) => e.toUpperCase()).toList(); | |
print(tmpList); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment