
Nana::Translator::Perl - AST to Perl

use Nana::Translator::Perl;
my $compiler = Nana::Translator::Perl->new();
my $perl = $compiler->compile($ast);
eval $perl;

This class translates tora AST to perl code. And you can eval() the code.

Create a new instance.
Compile a AST to perl code.

Tokuhiro Matsuno