Java:
Code: Select all
public static class Bindings {
@Define("r")
public int getRandom() {
return Math.abs(new Random().nextInt());
}
};
public static void main(String[] args) throws Exception {
ExpressionFormat template = new ExpressionFormat("Random number = {r}");
System.out.println(template.format(new Bindings()));
}
Code: Select all
Random number = 1232064860
