「Ruby」文字列の変数を使うサンプル
説明
#{文字列変数名}
文字列(String)は、ダブルクォート(“)、またはシングルクォート(')で囲みます。
サンプルコード
#!/usr/bin/ruby # -*- coding: UTF-8 -*- cftA = "arkgame" cftB = "Taro" puts "welcome #{cftA}, #{cftB} go home and eat"
実行結果
welcome arkgame, Taro go home and eat