Access Modifiers in PERL - English

10746 visits



Outline:

Access Modifiers in PERL 1. private variable - my scope is in the block inside where it is declared 2. lexically scoped variables - local that means they get the temporary value inside the block 3. global variables - our can be accessed without giving package name while accessing it in another package