1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 08:00:04 +08:00
SpaceVim/bundle/vim-matchup/test/lang/ruby/next.rb

9 lines
104 B
Ruby
Raw Normal View History

2020-06-13 14:06:35 +08:00
for i in 0..5
if i < 2 then
next
else
end
puts "Value of local variable is #{i}"
end