我在Ubuntu安装了Shoes,但它无法正常工作。 例如:
它不起作用
Shoes.app :width => 200 :height => 300 do
button("Hello"){
alert("DaBuDi")
}
end
它在鞋子窗口中写了“语法错误”......
Shoes.app do
button("Hello"){
alert("DaBuDi")
}
end
它有效。
我按照https://github.com/shoes/shoes/wiki/Building-Shoes-on-Linux
的说明安装了鞋子答案 0 :(得分:2)
你错过了哈希对之间的,
Shoes.app :width => 200, :height => 300 do
也许最好()
Shoes.app(:width => 200, :height => 300) do