mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
10 lines
67 B
Ruby
10 lines
67 B
Ruby
ii = 0
|
|
while ii < 5
|
|
ii += 1
|
|
if ii == 3
|
|
break
|
|
end
|
|
end
|
|
|
|
ii
|