Search notes:

Perl function: qq

use warnings;
use strict;

my $text = 'baz';

print qq{

  foo  bar $text

  '$text' "$text"

};

print "-------------\n";

print qq !

   \$text = $text

!;
Github repository about-perl, path: /functions/qq.pl

See also

Perl functions

Index