5 ms·
From 'man perlop': Customary Generic Meaning Interpolates '' q{} Literal no
by tod222 3y ago
From 'man perlop':
Customary Generic Meaning Interpolates
'' q{} Literal no
"" qq{} Literal yes
--
where {} can be any bracket pair.
my $string1 = q<a single quote '>;
my $string2 = qq<a double quote ">;