In Python you can have a multiline string like this using a docstring
foo = """line1
line2
line3"""
Is there something equivalent in Perl?
|
Perl doesn't have significant syntactical vertical whitespace, so you can just do
which is equivalent to
|
|||||||||
|
|
Normal quotes:
Here-docs allow you to define any token as the end of a block of quoted text:
Regex style quote operators let you use pretty much any character as the delimiter--in the same way a regex allows you to change delimiters.
|
|||
|
|
|
Yes you have 2 options : 1.heredocs please note that every data in heredocs are interpolated : my $data =< your data END 2.qq() see for example : print qq( HTML $your text BODY HTML ); |
|||||
|
name.__doc__. Those are also used for automatical help page generation. – poke May 20 '10 at 18:42*PackageName::Dataand a POD parser to great mischief should be quite possible. But you're certainly right to point out that POD isn't included in any ordinary data structure by the compiler. – tsee May 21 '10 at 6:45