Mercurial > pub > Impl
diff Lib/IMPL/_core.pm @ 163:6ce1f052b90a
temp commit
author | wizard |
---|---|
date | Tue, 15 Mar 2011 02:32:42 +0300 |
parents | |
children | 76515373dac0 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Lib/IMPL/_core.pm Tue Mar 15 02:32:42 2011 +0300 @@ -0,0 +1,13 @@ +package IMPL::_core; +use strict; +use IMPL::_core::version; + +use base qw(Exporter); +our @EXPORT_OK = qw( &isDebug &setDebug); + +our $Debug = 0; + +sub isDebug { $Debug }; +sub setDebug { $Debug = shift }; + +1; \ No newline at end of file