in reply to Re: perlapp, die, and __DATA__
in thread perlapp, die, and __DATA__
Or since @DATA isn't needed as an array this would be sufficient:
my $data = q{ line 1 line 2 line 3 }; # OR $data = <<'END'; line 1 line 2 line 3 END # to ensure a terminating newline # chomp $data; $data .= $/ print "$data";
This is as usual another way to write the first suggestion (where @data should be $data too):
@DATA = map "$_\n", split /\n/, $data; # but why add \n when you chomp + later?
--
integral, resident of freenode's #perl
|
|---|