|
|
Script Function ReferenceFunction Reference >Script Function Reference >Function Manipulation>evaluateevaluateevaluate will evaluate the string passed and return the result.
evaluate(expression)
Parametersexpression is a string to be evaluated.Return Valueevaluate returns the value evaluated. The return type can be a number, list, or matrix table.Example
function example()
value = evaluate("3!+sin(x)")
outputString("value="..value.r.."\n")
end
|