Copying function in variable
Writing functions:
setformula(variable, formula)
Variable variable is copied the formula. In this case, the variable which acts as a container for the formulas, for example:
setformula(y, x^2-4);
The same effect will be under the command:
&y=x^2-4;