2012-01-30 yieldメモ &を使うことでメソッドにブロックを渡すことができる。 def hoge(a, b, &op) yield a, b end p hoge(3,4){|x,y| x*y}