Perl5 as a first-class script engine in Java - part 2
Perlito5 is an implementation of the Perl5 language that runs in the Java / JVM platform.
jrunscript now works with the "Perl5" language parameter:
$ jrunscript -cp .:perlito5.jar -l Perl5
perl> push @INC, "src5/lib"
1
perl> use Env qw/ HOME /;
perl> say $HOME
/Users/fglock
1
perl>
Leave a comment