RosettaCodeData/Task/Here-document/Perl-6/here-document-2.pl6

12 lines
271 B
Raku

my $contrived_example = 'Dylan';
sub freewheelin() {
print q :to 'QUOTE', '-- ', qq :to 'AUTHOR';
I'll let you be in my dream,
if I can be in yours.
QUOTE
Bob $contrived_example
AUTHOR
}
freewheelin;