Help for this page
# uninterpolated string my $string = '\\\\ double escape \single escape'; ... print "$string\n"; # output is '\\\\ double escape \\single escape'
$string = '\hello'; # and $string = '\\hello';