letpermanent
VARIABLE
=
VALUE

The letpermanent statement creates a permanent variable and assigns a value to it.


Parameters

This statement has two parameters:

variable – is the name of the variable that you want to create.

value – calculates the value that will be placed into the variable.


Description

This statement works just like an assignment, but the destination of the assignment is automatically created as a permanent variable. If the variable already exists, the new value will be assigned to it. For example, this statement creates a permanent variable named pageCount and assigns the value 23 to it.

letpermanent pageCount=23

The value can be any data type, for example text like this:

letpermanent userName="Bob"

See Also


History

VersionStatusNotes
10.0NewNew in this version.