summaryrefslogtreecommitdiffstats
path: root/lua/demo.lua
blob: c5ee4971750be4ed5bfc84d83e647006b8f1d529 (plain)
1
2
3
4
5
6
7
8
9
10
11
ui.print("hello world")

table = {}
table[1] = 1
table["msg"] = "hello"

function do_something()
    return 1
end

return table