aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/lua/loop.lua
blob: 7f5402d1e9c1df51a7ee752a2b67348ffef58ee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local x = 1

while x < 10 do
  x = x + 1
  break
end

for i = 1,3 do
  x = x + i
end

repeat
  x = x + 1
until x > 100