How do I tell what type of value is in a Perl variable?

Viewed 125871

How do I tell what type of value is in a Perl variable?

$x might be a scalar, a ref to an array or a ref to a hash (or maybe other things).

5 Answers
Related