------ art_71720_27476420.1133316396430
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Not very nice but...
def a(&block)
puts "A"
return block
end
def b(b2)
puts "B"
b2.call
yield
end
b(a { puts "HELLO 1" }) { puts "HELLO 2" }
------ art_71720_27476420.1133316396430--