Skip to content

Instantly share code, notes, and snippets.

@jamesgecko
Created March 19, 2012 22:58
Show Gist options
  • Save jamesgecko/2127985 to your computer and use it in GitHub Desktop.
Save jamesgecko/2127985 to your computer and use it in GitHub Desktop.
["hello","good day","how do you do"].each{
|s|
caps( s ){ |x| x.capitalize!
puts( x )
}
}
["hello","good day","how do you do"].each do |s|
caps(s) { |x| puts(x.capitalize!) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment