Daily Archives: 2008年1月9日
Ruby: メソッドの引数にブロックを渡す
ブロックの使い方を練習してみます。 def repeat(n) n.times { yield } if block_given? end repeat(2) { puts “Hello.” } # Hello. # H … Continue reading
ブロックの使い方を練習してみます。 def repeat(n) n.times { yield } if block_given? end repeat(2) { puts “Hello.” } # Hello. # H … Continue reading