So here I am now developing my first Tool - very exciting - and here I am the first time scratching my head :)
Let's assume the following code:
| x y expression |
x := 1.
expression := expressionFromTool.
"expressionFromTool is a localVariable (Text, Number) where the user should put in an expression like: 2 * x."
y := expression.
The problem is I can't pass an expression as variable, I always get that variable x is undeclared - or is there a way? I also tried defining expressionFromTool as an object but that didn't do it. Maybe a string? But then how do I convert the string to an expression?
Thanks!