Created
August 7, 2014 00:34
-
-
Save fdelacruz/1ec0eb8a2e896a50af58 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
| array = [1, 2, 3, 4] | |
| array.collect! do |n| | |
| n ** 2 | |
| end | |
| puts array.inspect # => [1, 4, 9, 16] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment