Skip to content

Perlito5 - a Perl5 compiler

Compare
Choose a tag to compare
@fglock fglock released this 13 May 15:59
· 2070 commits to master since this release

Perl5-based Perl5 compiler

Perlito5-9.022.tar.gz provides:

  • the perlito5 command line compiler

  • the lib directories for Java and JavaScript specific Perl modules.

Perl5 to Java and JavaScript based compilers

Note the "-I" parameter, this needs to point to the lib directories for Perlito5 perl modules. Alternately, you can set the "PERL5LIB" environment variable.

  • run Perl in the JVM with "perlito5.jar", or pre-compile a stand-alone Perl script to Java:
java -jar perlito5.jar -I src5/lib -e ' print "hello, World!\n" '
  • run Perl using Node.js with "perlito5.js", or pre-compile a Perl script to JavaScript:
nodejs perlito5.js -I src5/lib -e ' print "hello, World!\n" '