qq/STRING/
q//は文字列をダブルクォートで囲んだのと同様です。
qq//の使い方
$x = "beautiful";
print qq{How $x if nothing more\n};
> How beautiful if nothing more
LESSON112


qq/STRING/ q//は文字列をダブルクォートで囲んだのと同様です。 qq//の使い方 $x = "beautiful"; print qq{How $x if nothing more\n}; > How bea […]
q//は文字列をダブルクォートで囲んだのと同様です。
$x = "beautiful";
print qq{How $x if nothing more\n};
> How beautiful if nothing more