Perl regards variables as being of one of three basic types:
$
symbol prefix. A scalar variable
can be either a number or a string.
@
symbol prefix. Arrays are indexed
by numbers.
%
symbol prefix. Arrays
are indexed by strings. You can look up items by name.
Note: This is quite different than Pascal. But Hopefully this makes things easier.