You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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