Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        printf "[%s] badness: %s\n", $$, $foo;
        $foo += $val;
    }
    
  2. or download this
    package Apache::ROOTfoo_2ecom::test_2epl;
    use Apache qw(exit);
    ...
    }
    
    }
    
  3. or download this
    Package: Apache::ROOTfoo_2ecom::test_2epl
    [13520] Before: 5
    [13520] badness: 5
    [13520] After: 10
    
  4. or download this
    Package: Apache::ROOTfoo_2ecom::test_2epl
    [19331] Before: 5
    [19331] badness: 5
    [19331] After: 10
    
  5. or download this
    Package: Apache::ROOTfoo_2ecom::test_2epl
    [19331] Before: 5
    [19331] badness: 10
    [19331] After: 5
    
  6. or download this
    Package: Apache::ROOTfoo_2ecom::test_2epl
    [19331] Before: 5
    [19331] badness: 15
    [19331] After: 5
    
  7. or download this
    use strict;
    use warnings;
    ...
        printf "[%s] badness: %s\n", $$, $$foo;
        $$foo += $val;
    }