Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Re: perlapp, die, and __DATA__

by integral (Hermit)
on Apr 25, 2003 at 10:47 UTC ( [id://253130]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://253130]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-20 04:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found