Help for this page

Select Code to Download


  1. or download this
    sub AUTOLOAD {
        my($constname);
    ...
        eval "sub $AUTOLOAD { $val }";
        goto &$AUTOLOAD;
    }
    
  2. or download this
        my($constname);
        ($constname = $AUTOLOAD) =~ s/.*:://;
        my $val = constant($constname, @_ ? $_[0] : 0);