Questions about this topic? Sign up to ask in the talk tab.
Perl/Basics/Variables and Data Types/Scalars
From NetSec
Revision as of 00:14, 19 July 2012 by Chantal21I (Talk | contribs) (moved Perl/Basics/Variables and Data Types/scalars to Perl/Basics/Variables and Data Types/Scalars)
Scalars in perl are prefixed with a $. A scalar may contain any string, integer, or floating point value. It may also contain a reference pointer. An example declaration:
<syntaxhighlight lang="perl">my $message = "Hello world!\n"; print $message;</syntaxhighlight> |