Solved it!
All I needed to do is direct the result from the consume to a variable that 
was then accessible anywhere else. So:

A = consume( . . . ) do o
   <things>
   result
end

consume( . . . ) do o
   <do things with A>
end

Reply via email to