Mercurial > pub > Impl
comparison Lib/IMPL/_core.pm @ 163:6ce1f052b90a
temp commit
author | wizard |
---|---|
date | Tue, 15 Mar 2011 02:32:42 +0300 |
parents | |
children | 76515373dac0 |
comparison
equal
deleted
inserted
replaced
162:39c8788eded5 | 163:6ce1f052b90a |
---|---|
1 package IMPL::_core; | |
2 use strict; | |
3 use IMPL::_core::version; | |
4 | |
5 use base qw(Exporter); | |
6 our @EXPORT_OK = qw( &isDebug &setDebug); | |
7 | |
8 our $Debug = 0; | |
9 | |
10 sub isDebug { $Debug }; | |
11 sub setDebug { $Debug = shift }; | |
12 | |
13 1; |