Skip to content

Instantly share code, notes, and snippets.

View yoshitokamizato's full-sized avatar

yoshito kamizato yoshitokamizato

View GitHub Profile
hp = 10
damage = 5
hp -= damage
if hp <= 0
puts "勇者は死んだ"
elsif
puts "勇者のHPは#{hp}だ"
end
rails new bootstrap-app
puts "おみくじを引きますか?"
puts "コマンドを入力してください"
puts "yes → y"
puts "no → n"
print "コマンドを入力:"
command = gets.chomp
puts "あなたの入力したコマンドは「#{command}」です"
puts("月を数値で入力してください。")
month = gets.to_i
case month
when 1,2,12
puts("#{month}月は冬ですね。")
when 3,4,5
puts("#{month}月は春ですね。")
when 6,7,8
puts("#{month}月は夏ですね。")
when 9,10,11