Equivalent of Python docstring in Perl
Posted
by Mike
on Stack Overflow
See other posts from Stack Overflow
or by Mike
Published on 2010-05-20T18:36:34Z
Indexed on
2010/05/20
18:40 UTC
Read the original article
Hit count: 328
In python you can have a multiline string like this using a docstring
foo = """line1
line2
line3"""
Is there something equivalent in Perl?
© Stack Overflow or respective owner