Help for this page

Select Code to Download


  1. or download this
    $i++ and warn;
    
  2. or download this
    $i++ and printf "this is line %s\n", __LINE__;
    # or..
    $i++ and print "this is line ". __LINE__ . "\n";
    
  3. or download this
    $i++ and line();
    
    sub line { printf STDERR "now executing line %s\n", (caller)[2] }