in reply to Re: Detecting constant arguments passed to subroutines
in thread Detecting constant arguments passed to subroutines

It is a difference between:
sub is_const { readonly($_[0]); }
sub is_const { readonly(@_); }
sub is_const { readonly($_); }
--
Lubomir Host 'rajo'
http://rajo.platon.sk
  • Comment on Re^2: Detecting constant arguments passed to subroutines