* @throws
* @throws IOException
*/
public boolean evaluate(File file) {
try {
Script script = compileScript(file);
script.execute(createScope());
return true;
} catch (ScriptException e) {
System.err.println(e.getFullMessage());
e.printStackTrace();
} catch (IOException e) {