Help for this page

Select Code to Download


  1. or download this
    included from a line 2:
    included from b line 5:
    error in err:
    Bareword "z" not allowed while "strict subs" in use at err line 25.
    
  2. or download this
    included from a:
    included from b:
    included from err:
    Bareword "z" not allowed while "strict subs" in use at err line 25.
    
  3. or download this
    package L;
    
    ...
    }
    
    1;
    
  4. or download this
    use L;
    ...
    L::include "a";
    ...
    L::include "b";
    
  5. or download this
    error loading 'ERR': Bareword "z" not allowed while "strict subs" in u
    +se at ERR line 5.
    stack trace:
    ...
       L::bar called at B line 7
       L::foo called at B line 14
       L::include called at A line 2
    
  6. or download this
    package L;
    use warnings;
    ...
    }
    
    1;