Help for this page

Select Code to Download


  1. or download this
    sub stack_depth() {
      my $depth = 1;
      $depth++ while defined caller($depth);
      --$depth;
    }
    
  2. or download this
    #!/usr/bin/perl -wl
    use strict;
    ...
    1
    2
    3