Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^3: Bring Out Your New Perl Code

by sgt (Deacon)
on Dec 20, 2007 at 00:13 UTC ( [id://658021]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Bring Out Your New Perl Code
in thread Bring Out Your New Perl Code

Actually you should compare using a bare block (no BEGIN) which is the standard (older) way to have "state" variables.

I like 'state' but the old way is still useful if you need a pair of cooperating subs (or more):

% steph@ape (/home/stephan) % % cat state_old.px #!/usr/bin/perl+ { my $var = 10; sub next1 { ++$var; } sub next1_odd { if ($var % 2 == 0) { ++$var; } else { ++$var; ++$var; } } } $\ = qq{\n}; print next1() for 1..5; print next1_odd(); % steph@ape(/home/stephan) % % perl+ -w state_old.px 11 12 13 14 15 17
cheers --stephan

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (7)
As of 2024-04-18 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found