diff options
Diffstat (limited to '')
-rw-r--r-- | lua/demo.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/demo.lua b/lua/demo.lua index 916eb2c..c5ee497 100644 --- a/lua/demo.lua +++ b/lua/demo.lua @@ -1,7 +1,11 @@ ui.print("hello world") +table = {} +table[1] = 1 +table["msg"] = "hello" + function do_something() return 1 end -return 10 +return table |