I'm trying out the return function for the first time. The following lines of code show no output. I'm trying to figure out what's wrong with my code. I'd appreciate your input.
def favourite_drink name
if name == "tea"
return "I love tea too!"
end
if name == "lemonade"
return "Stuff's refreshing, isn't it?"
end
if name == "coffee"
return "Dude, don't have too much of that stuff!"
end
"So what exactly is it that you like? (scratches head)"
end
favourite_drink "tea"
{}) next time. It helps to make your code more readable :D – Nanne Aug 1 '12 at 6:50