Help for this page

Select Code to Download


  1. or download this
    main.pl <- B.pm <- A.pm
    
  2. or download this
    # normal run, will finish after 7 iterations
    # 'ipcs -a' shows everything was cleaned up properly
    ...
    # 'ipcs -a' shows a leak of a memory segment
    
    perl main.pl 2 2 2
    
  3. or download this
    use strict;
    use warnings;
    ...
    }
    
    1;
    
  4. or download this
    use warnings;
    use strict;
    ...
        }
    }
    1;
    
  5. or download this
    use warnings;
    use strict;
    ...
    }
    
    B->run(@ARGV);