Skip to content

Instantly share code, notes, and snippets.

@takkanm
Created February 16, 2015 10:26
Show Gist options
  • Save takkanm/ef445d8db2fb36fdc5f2 to your computer and use it in GitHub Desktop.
Save takkanm/ef445d8db2fb36fdc5f2 to your computer and use it in GitHub Desktop.
irb(main):001:0> p ["hello", "world"].map(&:capitalize).join(' ')
"Hello World"
=> "Hello World"
irb(main):002:0> puts ["hello", "world"].map(&:capitalize).join(' ')
Hello World
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment