Mercurial > pub > Impl
view Lib/IMPL/Object/Clonable.pm @ 269:dacfe7c0311a
SQL schema updated (unstable)
author | sergey |
---|---|
date | Thu, 24 Jan 2013 20:00:27 +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;