NAME

Language::Tea - A Tea code converter.

VERSION

Version 0.01

SYNOPSIS

This module converts Tea code into Java.

syntax:

destea.pl filename [option]

- filename: The Tea file you want to convert.

- option: put any character after the filename if you want destea to print directly to file. This will create a directory named 'Project' with a file MainProgram.java and other files for each class in the Tea file converted.

DESCRIPTION

destea will convert Tea code to Java. You have two options:

- You can print Java code to standard output; - Or, you can print Java code directly to java files. If you want to use this, you just have to put any character after the filename

Example:

./destea.pl example.java a

This will create a new directory called 'Project' and inside you'll have MainProgram.java, wich contains all main Tea instructions, and you'll have another files, one for each class in your Tea file converted.

Example:

Imagine you have a Tea file with two classes: Triangle and Rectangle. If you convert this file, you'll obtain MainProgram.java, Triangle.java and Rectangle.java

INSTALLATION

NOTE: This module requires the "astyle" command line program.

perl Makefile.PL
make
make test
make install

AUTHOR

Mario Silva <mario.silva at verticalone.pt>

Flavio S. Glock <flavio.glock@verticalone.pt>

Daniel Ruoso <daniel.ruoso@verticalone.pt>

BUGS

NOTE: This module requires the "astyle" command line program.

Please report any bugs or feature requests to bug-language-tea at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Language-Tea. We will be notified, and then you'll automatically be notified of progress on your bug as we make changes.

COPYRIGHT & LICENSE

Copyright 2007 Mario Silva, Flavio S. Glock, Daniel Ruoso, Vertical One Lda. all rights reserved.

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