This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'pp' | |
# block/proc/lambda のおさらい① | |
# | |
# - block とは | |
# メソッドに「処理」を渡したい時に使うもの | |
def hoge(&block) | |
block("World") | |
end |