Skip to content

Instantly share code, notes, and snippets.

@davidmaogomezz
Created January 21, 2020 20:37
Show Gist options
  • Save davidmaogomezz/c7464b26e75b37e7bae44bd71a365955 to your computer and use it in GitHub Desktop.
Save davidmaogomezz/c7464b26e75b37e7bae44bd71a365955 to your computer and use it in GitHub Desktop.
Ciclo while
cont = 0
while cont <= 10
puts "el valor de cont es #{cont}"
cont += 1
end
cont = 0
while cont <= 10
puts "el valor de cont es #{cont}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment