Skip to content

Instantly share code, notes, and snippets.

@davidmaogomezz
Created January 21, 2020 20:58
Show Gist options
  • Save davidmaogomezz/8fe16b97d283264e3bcd514f936d1dd6 to your computer and use it in GitHub Desktop.
Save davidmaogomezz/8fe16b97d283264e3bcd514f936d1dd6 to your computer and use it in GitHub Desktop.
factorial while
numero = 7
factorial = 1
while numero > 0
factorial = factorial * numero
numero -= 1
end
puts factorial
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment