lulu 0.0.721

A mini lua runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using {
  lulib.rayous
}

@AsWidget()
function MyWidget(@WidgetProps({ name = "" }) props)
  fprint(props)
end

return function()
  return Widget {
    Text {
      text = "Something"
    },
    MyWidget {}
  }
end