1local function hello()
2    return "hello from lua"
3end
4
5return {
6    hello = hello
7}
8