Help for this page

Select Code to Download


  1. or download this
    package Cloneable;   # interface
    
    sub clone { die "you must implement clone() yourself" }
    
    1;
    
  2. or download this
    sub import {
      my $callerpackage = caller;
    ...
    
      undef $locks{$callerpackage};
    }