0 votes
in Perl by
List the data types that Perl can handle?

1 Answer

0 votes
by

Scalars ($): It stores a single value.

Arrays (@): It stores a list of scalar values.

Hashes (%): It stores associative arrays which use a key value as index instead of numerical indexes

...