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

Re: Re: Re: Assining data to an array is slow..

by chromatic (Archbishop)
on Mar 01, 2001 at 05:18 UTC ( [id://61486]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @list = (1, 2, 3);    # list context, @list -> (1, 2, 3)
    my $num = @list;        # scalar context, $num -> 3
    my @second_list = @list;    # list context, @second_list -> (1, 2, 3)
    
  2. or download this
    while ($row = <FH>) {
        () = unpack("a9 a40 a15 a15 a15 a2 a9 a9 a9",$row);
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (7)
As of 2024-03-28 20:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found