Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created September 23, 2012 16:24
Show Gist options
  • Select an option

  • Save edipofederle/3772194 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/3772194 to your computer and use it in GitHub Desktop.
square2.rb
class Array
def square
self.collect {|num| num * num}
end
end
puts [1.0,2.0,3.0].square
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment