AI::General - A general-purpose artificial intelligence


AI-General documentation Contained in the AI-General distribution.

Index


Code Index:

NAME

Top

AI::General - A general-purpose artificial intelligence

SYNOPSIS

Top

  use AI::General;

  AI::General->dwim( "Prove NP != P" ) or
  	die $AI::General::excuse;

  


  


DESCRIPTION

Top

This module is a general purpose artificial intelligence. It consists of one method, dwim ('Do what I mean'), which can take any number of arguments.

TO DO

Top

Implement dwim()

CREDITS

Top

Cheers to Santiago Dala for suggesting the constructor implementation

AUTHOR

Top

Maciej Ceglowski, <maciej@ceglowski.com>

SEE ALSO

Top

perl.


AI-General documentation Contained in the AI-General distribution.

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__