mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-05 02:40:03 +08:00
9 lines
104 B
Ruby
9 lines
104 B
Ruby
|
for i in 0..5
|
||
|
if i < 2 then
|
||
|
next
|
||
|
else
|
||
|
end
|
||
|
puts "Value of local variable is #{i}"
|
||
|
end
|
||
|
|