mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:40:05 +08:00
13 lines
230 B
Lua
13 lines
230 B
Lua
(function(args)
|
|
lst = { a=function(arg) print("hello") end,
|
|
b=(1+2)*3/4,
|
|
[3+5]={ ["hello"]=("hi") },
|
|
}
|
|
lst[
|
|
(function() return 0 end)()] = 1
|
|
end)("blah")
|
|
|
|
[[
|
|
Special lua string...
|
|
]]
|