Mercurial > pub > Impl
view Lib/IMPL/Object/Clonable.pm @ 163:6ce1f052b90a
temp commit
author | wizard |
---|---|
date | Tue, 15 Mar 2011 02:32:42 +0300 |
parents | |
children | 76515373dac0 |
line wrap: on
line source
package IMPL::Object::Clonable; use strict; use Storable qw(dclone); sub clone { dclone($_[0]); } 1;