初めてreturn関数を試しています。次のコード行は出力を示しません。コードの何が問題なのかを理解しようとしています。ご意見をお寄せいただければ幸いです。
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"