Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        my $num = shift;
        return ++$num;
    }
    
  2. or download this
    use warnings;
    use Devel::Trace::Subs qw(trace trace_dump); # injected by Devel::Trac
    +e::Subs
    ...
        my $num = shift;
        return ++$num;
    }
    
  3. or download this
    $ENV{DTS_ENABLE} = 1;
    
    three(5); # this is the original call stack you're running
    
    trace_dump();
    
  4. or download this
    216
    
    ...
        file:    test.pl
        line:    22
        package: main
    
  5. or download this
    $ENV{DTS_ENABLE} = 1;
    
    trace_dump();