# => '$String'
$sgl\_quotes = '$String';
# => 'This is a $String.'
$dbl\_quotes = "This is a $sgl\_quotes.";
# => a tab character.
$escaped   = "a \t tab character.";
# => a slash and a t: \t
$unescaped = 'a slash and a t: \t';
Comments