Syntax

put <expression> into <container>

put "Hello" into myVariable

Explanation

You can use the put command to move an expression into a container. I.e. you can use it to put text or numbers into a text field, change properties on objects etc.

You can use the put command to not only change a variable’s value, but also to declare a new one, by using put on an identifier for which no variable exists yet.

Parameters

expression

What you want to assign to the container.

container

The destination where you want expression copied to.

See Also