Help for this page

Select Code to Download


  1. or download this
    sub AUTOLOAD {
        # This AUTOLOAD is used to 'autoload' constants from the constant(
    +)
    ...
        eval "sub $AUTOLOAD { $val }";
        goto &$AUTOLOAD;
    }
    
  2. or download this
    static double
    constant(char* name)
    ...
        errno = ENOENT;
        return 0;
    }