Skip to content

Instantly share code, notes, and snippets.

@dukeimg
Created March 1, 2016 19:09
Show Gist options
  • Save dukeimg/f8d147f7532a139f0e8c to your computer and use it in GitHub Desktop.
Save dukeimg/f8d147f7532a139f0e8c to your computer and use it in GitHub Desktop.
until $c == num
find(c)
c += 1
end
# Тоже что и:
while $c < nume
find(c)
c += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment