in reply to Re: Differences between qq() and ""
in thread Differences between qq() and ""
A book recommendation. merlyn's book Learning Perl gives an excellent overview of Perl that should do a lot to clear up any confusion about how quoting works, the various kinds of data structures, writing functions, what regular expressions are, and so on. I think it would be very helpful to you at your current stage of Perl development.my $foo = "This is a variable"; print "Double quotes: ($foo)\n"; print 'Single quotes: ($foo)\n';
|
|---|