yield with proc parameter : yield « Method « Ruby
- Ruby
- Method
- yield
yield with proc parameter
#!/usr/local/bin/ruby
def return_block
yield
end
def return_proc( &proc )
yield
end
return_block { puts "Got block!" }
return_proc { puts "Got block, convert to proc!" }
Related examples in the same category