NAME

Acme::Yoda -

SYNOPSIS

use Acme::Yoda;

DESCRIPTION

Acme::Yoda translates back and forth from yoda speak.

USAGE

   use Acme::Yoda;  

   my $y = Acme::Yoda->new();
   my $translated = $y->yoda('I am your father');
   my $back_again = $y->deyoda($translated)

BUGS Right now Acme::Yoda does not handle contractions nor does it have a comprehensive list of verbs.

You can only deyoda sentences you have yoda'ed, since I have no 
reliable way to discern the subject of the sentence.

Both issues need to be fixed.

SUPPORT

email me if you need help.

AUTHOR

	Christian Brink
        GREP
	cbrink@flylines.org
	http://www.yoda-speak.org

COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

SEE ALSO

perl(1).

new()

Usage     : new( sentence => 'I am a sentence') or just new();
Purpose   : constructor
Returns   : Acme::Yoda object
Argument  : can take a sentence 

yoda()

Usage     : yoda('sentence')
Purpose   : Translates your sentenece into yoda speak
Returns   : string
Argument  : string 
Comments  : You can sent the sentence in new() or send it here

deyoda()

Usage     : deyoda('sentence')
Purpose   : Translates your sentenece out of yoda speak
Returns   : string
Argument  : string
Comments  :