Questions about this topic? Sign up to ask in the talk tab.

Perl/Basics/Variables and Data Types

From NetSec
Revision as of 03: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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.