Advertisement
Guest User

Untitled

a guest
Feb 6th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. method Accumulate
  2. def accumulate
  3. self
  4. end
  5. end
  6.  
  7. class Array
  8. include Accumulate
  9. end
  10.  
  11.  
  12.  
  13. result = %w(hello world).accumulate(&:upcase)
  14.  
  15. p result
  16. # ["hello", "world"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement