Help for this page

Select Code to Download


  1. or download this
    $ perl a.pl
    Use of uninitialized value in print at a.pl line 11 (#1)
    ...
    
    done.
    
  2. or download this
    sub callstack
    {
    ...
        goto &Carp::cluck;
        $SIG{__WARN__} = \&callstack;
    }
    
  3. or download this
    sub callstack
    {
    ...
        require Carp;
        print STDERR Carp::longmess(@_);
    }