Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: Incrementing a Hash Value

by Juerd (Abbot)
on Jun 14, 2002 at 12:51 UTC ( [id://174486]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $i = 5;
    $i = $i++;
    print $i, "\n"; # 5\n
    
  2. or download this
    $i = 5;
    $i = ++$i;
    print $i, "\n"; # 6\n
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (7)
As of 2024-04-23 07:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found