Help for this page

Select Code to Download


  1. or download this
    # ...
    107    sub foo {
    108        my $x;
    ...
    110 =>     die "invalid x!" unless $x == 42;
    111        print "Yay!"
    112        # ...
    
  2. or download this
    109        $x = 43;
               # When I hit "save", foo is recompiled. If line numbers
               # have changed, breakpoints are updated.