Skip to content

Releases: fglock/Perlito

Perlito5 - a Perl5 compiler

24 May 19:09
Compare
Choose a tag to compare
v9.023

Perlito5 - CPAN - v9.023

First draft to perlito brew

20 Aug 19:59
Compare
Choose a tag to compare
Pre-release

This is a pre release to test the perlito brew installer.

Perlito brew is a experimental way to distribute all the perlito backends plus a simple command line to change versions and backends.

Perlito5 - a Perl5 compiler

13 May 15:59
Compare
Choose a tag to compare

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" '