nvim-treesitter/tests/indent/lua/func.lua
2024-07-16 13:17:36 +02:00

11 lines
129 B
Lua

function foo(x)
local bar = function(a, b, c)
return a + b + c
end
return bar(
x,
1,
2)
end
function hi()