Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: difference between @, $

by choroba (Cardinal)
on Dec 07, 2011 at 15:44 UTC ( [id://942271]=note: print w/replies, xml ) Need Help??


in reply to difference between @, $

In the first case, you are assigning to an array @a. The first element of the array will be the reference to the anonymous array containing 4 values.
In the second case, you assign the reference directly to a scalar variable $a.
Or, as SuicideJunkie put it in the CB: in the first case, $a[0][2] == 3 and in the second case, $a->[2] == 3

Log In?
Username:
Password:

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

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

    No recent polls found