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

ref():

Perl provides the ref() function so that you can check the reference type before dereferencing a reference…

By using the ref() function you can protect program code that dereferences variables from producing errors when the wrong type of reference is used…

Leave a Comment