Mercurial > pub > Impl
view Lib/IMPL/Object/Clonable.pm @ 164:eb3e9861a761
SQL traits in progress
author | wizard |
---|---|
date | Mon, 28 Mar 2011 01:36:24 +0400 |
parents | 6ce1f052b90a |
children | 76515373dac0 |
line wrap: on
line source
package IMPL::Object::Clonable; use strict; use Storable qw(dclone); sub clone { dclone($_[0]); } 1;