in reply to Re: Referencing built-ins
in thread Referencing built-ins

Excellent technique. I wonder though, shouldn't that be as follows?
sub opt_h { exists $opt{h} } # boolean sub opt_f { exists $opt{f} ? $opt{f} : return } # takes value

Makeshifts last the longest.