Created
June 21, 2018 17:18
-
-
Save onlyangel/8e5b2e9d3f8c3682b05d7778e792b7f7 to your computer and use it in GitHub Desktop.
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
void main() { | |
var arr = [10,9,8,3,2,1,0]; | |
print(arr); | |
arr.sort((a,b)=>a-b); | |
print(arr); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment