Why do Perl variables need to start with different characters?
Scalar variables start with
$Hashes start with
%Arrays start with
@
Why are they like this?
|
2
|
Why do Perl variables need to start with different characters?
Why are they like this?
|
||||||||||||
|
|
|
G'day, When I started out using Perl it was explained to me that these characters were chosen because:
HTH cheers, |
||||||||
|
|
|
This is because Perl uses sigils:
|
||
|
|
|
|
|
||
|
|
|
|
Several reasons are explained by Larry Wall et al in "Programming Perl":
|
||
|
|
http://www.wall.org/~larry/natural.html:
|
||
|
|
|
|
Not all of them do, some start with % (hashes) or with @ (arrays). It is a design decision to mark them as variables and also denote their type. Note that you can have both a Check out a tutorial on Perl variables. |
||||||||||
|