out.write("Hello ${fnName('Lopes')}!".getBytes());
out.close();
final String location = temp.getAbsolutePath();
Yoke yoke = new Yoke(this);
yoke.set("fnName", new Function() {
@Override
public String exec(Map<String, Object> context, Object... args) {
return "Paulo " + args[0];
}
});