Hi all. Im wondering how to make this work:
class MyPara < Widget
def initialize(txt)
para txt
end
end
Shoes.app do
my_para '432'
button 'clickme' do
my_para '123'
end
end
Its failing for my_para '123'
Thanks!
