Skip to content

Instantly share code, notes, and snippets.

@hisanari
Last active October 9, 2017 00:10
Show Gist options
  • Save hisanari/e79a9ab554cbcbb960addfd482a60669 to your computer and use it in GitHub Desktop.
Save hisanari/e79a9ab554cbcbb960addfd482a60669 to your computer and use it in GitHub Desktop.
arr1 = [1,2,3,4]
arr2 = arr1
arr3 = arr1.clone
arr1.reverse!
p arr1
# [4,3,2,1]
p arr2
# [4,3,2,1]
p arr3
# [1,2,3,4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment