Skip to content

Instantly share code, notes, and snippets.

@davidrichards
Created February 22, 2014 06:20
Show Gist options
  • Save davidrichards/9149503 to your computer and use it in GitHub Desktop.
Save davidrichards/9149503 to your computer and use it in GitHub Desktop.
Some loop options
i = 1
until i == 3
puts i
i += 1
end
i = 1
begin
puts i
i += 1
end while i < 3
i = 1
begin
puts i
i += 1
end until i >= 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment