box-o-sand/PracticingPerl/cli/heredoc.pl

11 lines
67 B
Perl

#!/usr/bin/perl
print <<EOF
this
is a
multiline
string
yes?
EOF
;