word = 'hello'
puts 'Plese enter the best bleach character.'
word = gets.chomp
if word == Grimmjow
puts 'You are correct.'
else
puts 'YOU FAIL'
end
sleep 5
is close very close but if you run it you will get something about an undefined variable.
try it this way:
word = 'hello'
puts 'Plese enter the best bleach character.'
word = gets.chomp
if word == 'Grimmjow' <---------need the quotes
puts 'You are correct.'
else
puts 'YOU FAIL'
end
sleep 5