Mercurial > pub > Impl
view Lib/IMPL/_core.pm @ 173:aaab45153411
minor bugfixes
author | sourcer |
---|---|
date | Wed, 14 Sep 2011 18:59:01 +0400 |
parents | 76515373dac0 |
children | d1676be8afcc |
line wrap: on
line source
package IMPL::_core; use strict; use IMPL::_core::version; use parent qw(Exporter); our @EXPORT_OK = qw( &isDebug &setDebug); our $Debug = 0; sub isDebug { $Debug }; sub setDebug { $Debug = shift }; 1;