"晴れ" という文字列を引数で渡した時に
明日の天気は晴れです
とターミナルに表示されるようなメソッドを作成。
呼び出し方:get_weather_forecast(“晴れ”)
def get_weather_forecast(weather)
puts "明日の天気は#{weather}です"
end
get_weather_forecast("晴れ")
「明日の天気は〇〇です」の「〇〇」に任意の文字列(今回は「晴れ」)を表示したいので、引数を使用します。
「〇〇」にはメソッドの呼び出し元の引数に渡した文字列が表示されます。
get_weather_forecast("晴れ")
そして、文字列を出力するためのget_weather_forecastメソッドを定義します。
引数で渡した文字列を表示させたいので、文字展開を使用しています。
def get_weather_forecast(weather)
puts "明日の天気は#{weather}です"
end