Files
dockerfiles/tests/ruby/testcase/yieldblocklambda.rb
2019-08-04 22:54:34 -07:00

11 lines
233 B
Ruby

def block_test
puts "We're in the method!"
puts "Yielding to the block..."
yield
yield
puts "We're back in the method!"
end
block_test { puts ">>>>>>>>>> We're in the block!" }
block_test { puts "below it?!?>>>>>>>>>>>>"}