http://www.perlmonks.org?node_id=87674

entropy has asked for the wisdom of the Perl Monks concerning the following question:

$a=*{}; # doesn't like that $a=*{''}; # that seems like a completely different glob! $a=*; # oops! - the * eats the ; $a=(*); # doesn't like that either