Skip to content

Instantly share code, notes, and snippets.

@onlyangel
Created June 21, 2018 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onlyangel/8e5b2e9d3f8c3682b05d7778e792b7f7 to your computer and use it in GitHub Desktop.
Save onlyangel/8e5b2e9d3f8c3682b05d7778e792b7f7 to your computer and use it in GitHub Desktop.
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