Это пример:
Puts "#{input}"
If input == "Hello" || "hello". <== What to be able to enter same word but lower case and uppercase
Puts "nice to meet you"
Elsif input == "Bonjour" || "bonjour"
Puts "that's french"
Else
Puts "user input "
End
Как мне реализовать or
, and
в этом коде?