Help for this page

Select Code to Download


  1. or download this
        # warn user (from perspective of caller)
        carp "string trimmed to 80 chars";
    
  2. or download this
    use strict;
    use warnings;
    ...
        print shortmess("Shortmess Second");
        print longmess("Longmess Second");
    }
    
  3. or download this
    Carp Second at d:/Users/lanx/pm/carp.pl line 4.
    Cluck Second at d:/Users/lanx/pm/carp.pl line 16.
    ...
    Shortmess Second at d:/Users/lanx/pm/carp.pl line 4.
    Longmess Second at d:/Users/lanx/pm/carp.pl line 10.
        TEST::first(1) called at d:/Users/lanx/pm/carp.pl line 4
    
  4. or download this
    Shortmess Second at d:/Users/lanx/pm/carp.pl line 17.
        TEST::second(2) called at d:/Users/lanx/pm/carp.pl line 10
        TEST::first(1) called at d:/Users/lanx/pm/carp.pl line 4
    Longmess Second at d:/Users/lanx/pm/carp.pl line 10.
        TEST::first(1) called at d:/Users/lanx/pm/carp.pl line 4