Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^4: Half-serious quest for prefix anonymous refs taking

by blazar (Canon)
on May 31, 2008 at 09:51 UTC ( [id://689409]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $aref = [1..42];
    my $href = { foo => 1, bar => 2 };
    my $cref = do { my @x=1..42; sub () { @x } };
    my $sref = do { my $x=42; \$x };
    
  2. or download this
    my $aref = \@ <== 1..42;
    my $href = \% <== foo => 1, bar => 2;
    my $cref = \& <== 1..42;
    my $sref = \$ <== 42;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-19 17:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found