Skip to content

Instantly share code, notes, and snippets.

@dmerrick
Created May 22, 2013 17:08
Show Gist options
  • Save dmerrick/5629212 to your computer and use it in GitHub Desktop.
Save dmerrick/5629212 to your computer and use it in GitHub Desktop.
>> a = [2, 1, 3]
=> [2, 1, 3]
>> a.sort
=> [1, 2, 3]
>> a
=> [2, 1, 3]
>> a.sort!
=> [1, 2, 3]
>> a
=> [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment