AI-General
view release on metacpan or search on metacpan
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.256 second using v1.01-cache-2.11-cpan-4d50c553e7e )