Where can I find a list of available JSR-223 scripting languages? [closed]
I need a JVM-based scripting language for my app and would like to see what else is out there besides Groovy, Ruby, and Python. Google keeps pointing me to a dead page at http://scripting.dev.java.net/ davidbuzatto This is not a official list, but you can start here: http://en.wikipedia.org/wiki/List_of_JVM_languages Rhino (JavaScript) is implemented in the Oracle JDK/JRE by default. With this code you can see what scripting languages are available in your JDK: import java.util.*; import javax.script.*; public class A { public static void main( String[] args ) { ScriptEngineManager mgr = new