aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/lua/cond.lua
blob: dfae37f054160a4bbaa543212eb39390b209d107 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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