Mercurial > pub > Impl
view Lib/IMPL/Object/Clonable.pm @ 329:50ff1595bd62
fixed bug when transforming list properties
author | sergey |
---|---|
date | Mon, 03 Jun 2013 18:03:54 +0400 |
parents | 4d0e1962161c |
children |
line wrap: on
line source
package IMPL::Object::Clonable; use strict; use IMPL::lang qw(clone); sub Clone { clone($_[0]); } 1;