Skip to content

Instantly share code, notes, and snippets.

Created July 5, 2015 16:56
Show Gist options
  • Save anonymous/5fca06cf9104a9b027c5 to your computer and use it in GitHub Desktop.
Save anonymous/5fca06cf9104a9b027c5 to your computer and use it in GitHub Desktop.
array = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
array.each_with_index do |v,i|
puts i.inspect
if i == 4
i = 100
end
end
# 0
# 1
# 2
# 3
# 4
# 105
# 106
# 107
# 108
# 109
# 110
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment