in reply to Re: References Explanation
in thread References Explanation

A reference can't be null but it can reference empty strings, null characters and undefined values.

#!/usr/bin/perl -w use strict; foreach my $ref (\'', \"\0", \undef) { print $ref, " --> ", ${$ref}, "\n"; }
Note the warning about using an uninitialized value.