main
1class BlockVisitor
2  def initialize(&block)
3    @block = block
4  end
5
6  def visit(item)
7    @block.call(item)
8  end
9end