android-calculatorpp/src/misc/src/jscl/editorengine/commands/expand.bsh
2011-09-12 22:57:23 +04:00

6 lines
115 B
Plaintext

import jscl.math.Expression;
String expand(String expr) {
return Expression.valueOf(expr).expand().toString();
}