|
Project Information
Members
Featured
Downloads
Links
|
Goals
ContributeYou can contribute to the development of CajuScript by sending feedback and bug reports. Or click on the PayPal button below to donate money. VERSION 0.4 - Changelog
Subscribe to our official mailing list. Simple and powerful script to use with Java. Easy create newly instances of class and invocation of methods. Tuning using cache and compile. For know how you can use CajuScript on Java please see Javadoc. CajuScript implements Script Interfaces of the Java 6: javax.script.ScriptEngine caju = new org.cajuscript.CajuScriptEngine();
String javaHello = "Java: Hello!";
caju.put("javaHello", javaHello);
String script = "$java.lang;";
script += "System.out.println(javaHello);";
script += "cajuHello = 'Caju: Hi!';";
caju.eval(script);
System.out.println(caju.get("cajuHello"));See about customizable syntax: CajuScript is very faster
Samples |
