Perl virtual machine: Difference between revisions

Content deleted Content added
revert - rm link, as it is not specifically about the subject; formatting: whitespace (using Advisor.js)
wikifying
Line 28:
Perl variables can be global, dynamic (''local'' keyword), or lexical (''my'' and ''our'' keywords).
 
Global variables are accessible via the stash and the corresponding [[typeglob]].
 
Local variables are the same as global variables but a special opcode is generated to save its value on ''savestack'' and restore it later.