pmacs3/code_examples/heredoc.pl

11 lines
129 B
Perl

#!/usr/bin/perl
my $var = <<HEREDOC;
i hate this
it's so awful
$blah blah blah
jiejgiejgiejge
HEREDOC
print $var . "\n";