pmacs3/code_examples/heredoc.pl

11 lines
129 B
Perl
Raw Normal View History

2007-03-06 10:05:38 -05:00
#!/usr/bin/perl
my $var = <<HEREDOC;
i hate this
it's so awful
$blah blah blah
jiejgiejgiejge
HEREDOC
print $var . "\n";