You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expression.eval() only return decimal, how to return a string like the java port
Expression expression = new Expression("\"Hello \" + name + \", you are \" + age")
.with("name","Frank")
.and("age",38);
System.out.println(expression.evaluate().getStringValue()); // prints Hello Frank, you are 38
The text was updated successfully, but these errors were encountered:
Expression.eval()
only return decimal, how to return a string like the java portThe text was updated successfully, but these errors were encountered: