http://qs321.pair.com?node_id=149309


in reply to Help needed understanding global variables in Perl

Dear Anonymous Monk,

you have a number of questions rolled into your query. My first piece of advice is to read perlsub in the core documentation, if you have not already done so.

Why do you need global variables? You rarely need them in C. If you are wanting to preserve state information between subroutine calls, you should look at using a class, see perltoot object tutorial, or a closure, see Funkyness with closures....

Also, if the declaration of the sub is inside a block, it has access to 'my' variables declared in the block before the sub, which will keep their value between calls.

Hope this helps and I haven't confused you too much

--rW