Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, November 19, 2012

Codecademy: "Setting up the 'Else' branch"


#sample solution


print "Type in a string:"
user_input = gets.chomp.downcase

if user_input.include? "s"
  user_input.gsub!(/s/, "th")
else
  puts "Your input does not contain any letter 's'."
end

puts "You entered: #{user_input}"

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts