blob: 2494403e7b3a734f45973322cede0ee981a71bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local a = require("astal")
a.App:start({
instance_name = "Hello",
main = function()
a.Widget.Window({
no_implicit_destroy = true,
a.Widget.Button({
label = "hello",
}),
})
end,
})
|