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

15 lines
127 B
Lua
Raw Permalink Normal View History

2021-04-18 23:19:08 +02:00
local x = 10
if x > 3 then
x = 3
elseif x < 3 then
x = -3
else
if x > 0 then
x = 1
end
x = 0
end
if x > 2 then