view Lib/IMPL.pm @ 160:3f09584bf189

Corrected web application modules
author wizard
date Mon, 27 Dec 2010 19:41:36 +0300
parents c2aa10fbb396
children 6ce1f052b90a
line wrap: on
line source

package IMPL;
use strict;

use Exporter;
our @EXPORT_OK = qw( &Debug );

our $Debug = 1 unless defined $Debug;

sub Debug() {
	$Debug
}

1;