JERL 5.18r7 发布,让Perl运行在JVM中

jopen 11年前

JERL是一个允许Perl脚本运行在JVM上的系统,而不需要外部的Perl版本。

发布说明: Perl从 5.16.3 更新至 5.18。

package jerlEclipseSampleProject;    import jerlWrapper.perlVM;    public final class HelloWorld  {            /* Print Hello World + Perl Version */          private static String helloWorldPerl = "print 'Hello World '.$].\"\n\";";            public static void main(String[] args) {                  perlVM helloJavaPerl = new perlVM(helloWorldPerl);                        helloJavaPerl.run();          }
JERL 5.16..2_r5,让Perl运行在JVM中