AI-General

 view release on metacpan or  search on metacpan

General.pm  view on Meta::CPAN

package AI::General;

use 5.008;
use strict;
use warnings;


our $VERSION = '0.01';


sub new {
	my ( $class ) = @_;
	my $self = bless [], $class;
	$self->dwim( "Implement self" );
	return $self;
}


sub dwim {
	my ( $self, $args ) = @_;

	#... TO DO
}
	

1;


__END__



( run in 0.292 second using v1.01-cache-2.11-cpan-4d50c553e7e )