RosettaCodeData/Task/Here-document/Perl/here-document-6.pl
2019-09-12 10:33:56 -07:00

7 lines
103 B
Perl

sub flibbertigibbet {
print <<~END;
Mary had
a little
lamb
END
}