Skip to content

Instantly share code, notes, and snippets.

@yoshitokamizato
Created August 16, 2018 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoshitokamizato/d920d00f640f572158a648fc5c3677da to your computer and use it in GitHub Desktop.
Save yoshitokamizato/d920d00f640f572158a648fc5c3677da to your computer and use it in GitHub Desktop.
hp = 10
damage = 5
hp -= damage
if hp <= 0
puts "勇者は死んだ"
elsif
puts "勇者のHPは#{hp}だ"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment