Last active
January 27, 2021 11:29
-
-
Save nelantone/a2b44a9c5363948109b1e26683e7b61c 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
a = ['a','b', 'c'] | |
a.each do |a| | |
a.upcase! | |
a[1] = 'd' | |
end | |
p a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment