public static IFunctionHandler createHandler() {
ReflectFunctionHandler rfh = new ReflectFunctionHandler();
LispFunctionHandler lfh = new LispFunctionHandler();
lfh.eval(new File("functions"), true); // evaluate any lisp files
ScriptRepository srep = new ScriptRepository(new File("functions"), "Script.");
rfh.addMethods("Math.", Math.class);
rfh.addMethods("Math.", Maths.class);
rfh.addMethods("Reflect.", Reflect.class);
rfh.addMethods("CSV.", CSV.class);
rfh.addMethods("Test.", Test.class);