if @msg =~ /facebook/i
puts "Nice job, you got it!"
end
I want to make a trivia game that would somehow do not care about spelling count if a person typed in facebook
as the answer to the game.
if someone accidentally typed in faceboko, fecabook, or ftckbook
, it would work and give an output of "Nice job, you got it!"
I don't know how I would start it.