view Lib/IMPL/_core.pm @ 168:6148f89bb7bf

IMPL::SQL::Schema::Traits::Diff alfa version IMPL::lang added hash traits
author sourcer
date Mon, 16 May 2011 04:30:38 +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;