B
Bill Atkins
I'd really like to use include in block form, so I can do something like this:
def somefunc
include Wx do
f = Frame.new
t = Window.new
end
end
and the Wx:: would be implied only within the block. Any idea how I could do this?
Thanks,
Bill
def somefunc
include Wx do
f = Frame.new
t = Window.new
end
end
and the Wx:: would be implied only within the block. Any idea how I could do this?
Thanks,
Bill