nvim-treesitter/tests/indent/lua/func.lua

12 lines
129 B
Lua
Raw Permalink Normal View History

2021-04-18 23:19:08 +02:00
function foo(x)
local bar = function(a, b, c)
return a + b + c
end
return bar(
x,
1,
2)
end
function hi()