programming-examples/perl/String/A here-document starts on the line after the two arrows.pl
2019-11-15 12:59:38 +01:00

11 lines
318 B
Perl

#A here-document ends when the text following the arrows is found at the beginning of a line, like this.
#!/usr/bin/perl -w
print <<EOF;
#A here-document starts on the line after the two arrows.
#A here-document ends when the text following the arrows is found at the beginning of a line, like this.
EOF