Questions about this topic? Sign up to ask in the talk tab.
Perl/Basics/Variables and Data Types
From NetSec
Revision as of 02:07, 16 July 2012 by AlizaLorenzo (Talk | contribs) (Created page with "In strict perl, variables must be declared using the "my" or "our" operators. "my" is used implicitly in non-shared memory, whereas "our" is used explicitly for shared memory to...")
In strict perl, variables must be declared using the "my" or "our" operators. "my" is used implicitly in non-shared memory, whereas "our" is used explicitly for shared memory to pass data between threads.