svmartin
12/2/2016 - 4:35 PM

proc_return.rb

def context
  p = proc do
  puts "in proc"
  return
  puts "after return in proc"
end
	
p.call
	
puts "end of context method"
end

context
# => in proc