Mercurial > pub > Impl
view Lib/IMPL/Object/Clonable.pm @ 237:61db68166c37
refactoring QueryToDOM
author | sergey |
---|---|
date | Mon, 15 Oct 2012 17:39:12 +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;