Hi,
I have two functions that each takes a block:
def func1 (arg1, &arg2)
....
end
def func2 (arg1, &arg2)
....
func1 (x, ???) ???
....
end
Can we pass the block from func2 to func1? If yes, how? (It seems there
is no way to convert back from a Proc object to a block.)
Regards,
Bill