THITH MEANTH WAR!

PHOTO EMBED

Tue Jun 28 2022 14:08:23 GMT+0000 (Coordinated Universal Time)

Saved by @monnrz #ruby

print "What is your name? "
user_input = gets.chomp.downcase!

if user_input.include? "s"

user_input.gsub!(/s/, "th")

else 
  print "There are no s's'"

end

puts "Adios. #{user_input}!"
content_copyCOPY