Last active
July 23, 2019 06:00
-
-
Save Raziel422/3e4e0f9d7b37a1b1dca0a21c4031a374 to your computer and use it in GitHub Desktop.
Dart - Array
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
main() { | |
//List<int> things = [1, 2, 3]; | |
print('aaaaa'); | |
//predefined functions to work with arrays | |
//things.forEach() | |
//things.reduce() | |
//things.last; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment