Skip to content

Instantly share code, notes, and snippets.

@yoshiori
Created August 24, 2012 05:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoshiori/3446027 to your computer and use it in GitHub Desktop.
Save yoshiori/3446027 to your computer and use it in GitHub Desktop.
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
public class Scripting {
public static void main(String[] args) throws Exception{
ScriptEngine engin = new ScriptEngineManager().getEngineByName("JavaScript");
engin.eval("print(\"Hello JavaScript!!\");");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment