Skip to content

Instantly share code, notes, and snippets.

@AnonymousWS
Created June 16, 2015 18:39
Show Gist options
  • Save AnonymousWS/8c819fd9957294cc0cbe to your computer and use it in GitHub Desktop.
Save AnonymousWS/8c819fd9957294cc0cbe to your computer and use it in GitHub Desktop.
health = 100
loop do
puts "You got #{health} hp left "
health -= 5
break if health == 0
end
puts "game over"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment