Skip to content

Instantly share code, notes, and snippets.

Created December 28, 2012 00:00
Show Gist options
  • Save anonymous/4393341 to your computer and use it in GitHub Desktop.
Save anonymous/4393341 to your computer and use it in GitHub Desktop.
class Article
def send
puts "send"
end
end
articles = {"php"=>[Article.new], "ruby"=>[]}
articles.each_pair do |type, array|
puts type.to_s
array.each do |art| art.send; end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment