![]() |
|
Perl-Sensitive Sunglasses | |
PerlMonks |
Re: Re: Re: HTML embedded in perlby flyfishin (Monk) |
on Dec 18, 2002 at 16:43 UTC ( #220880=note: print w/replies, xml ) | Need Help?? |
Sorry, but you are incorrect. qq IS what you use to double quote text and have variables interpolated. q will single quote and not interpolate. #!/usr/bin/perl -w use strict; my $text = "INSERTED TEXT"; print qq! There is tome $text here \n!; # THIS INTERPOLATES print q! There is some $text here \n!; # THIS DOESN'T
In Section
Seekers of Perl Wisdom
|
|