Help for this page

Select Code to Download


  1. or download this
    sub DESTROY {
        my $self = shift;
        eval { store $self, DATA_FILE };
        die $@ if $@;
    }
    
  2. or download this
    ...
    sub logcroak {
    ...
    ...
    open(FILE, ">$file") || logcroak "can't create $file: $!";
    ...