Perl Programming/Data types
Tools
General
Sister projects
In other projects
| Previous: Operators | Index | Next: Scalar variables |
Perl has four fundamentaldata types: scalars, lists, hashes, and typeglobs.
All variables are marked by a leadingsigil, which identifies the data type.The same name may be used for variables of different types, without conflict.
$foo# a scalar@foo# a list%foo# a hash*foo# a typeglob
| Previous: Operators | Index | Next: Scalar variables |