Help for this page

Select Code to Download


  1. or download this
    lanx@lanx-1005HA:/tmp$ cat Weird.pm 
    package Weird;
    ...
    }
    
    1;
    
  2. or download this
    lanx@lanx-1005HA:/tmp$ cat t_carp.pl
    
    ...
    use Weird;      # ab'use
    
    warn "post use\n";
    
  3. or download this
    lanx@lanx-1005HA:/tmp$ perl -I. t_carp.pl
    
    ...
    normal output in tst()...
    pre use
    post use