PSL Statements
A PSL script consists of a sequence of commands. All uninitialized user-created objects are assumed to start with a NULL or 0 value until they are defined by some explicit operation such as assignment.
PSL is, for the most part, a free-form language. That is, lines don't have to start or end at or before a particular column; they can just continue on the next line. Whitespace is ignored except for the separation of tokens. Comments are indicated by the # character and extend to the end of the line.
For example, here is a comment about an assignment statement:
x = y; # Assign the value of y to the variable x
This section describes the statements that are supported by PSL.
- PSL Compound Statements
- do...until
- exit
- export
- for
- foreach
- function
- if
- last
- local
- main
- next
- requires
- return
- switch
- while
Where to from here
Was this page helpful? Yes No
Submitting...
Thank you
Comments
Log in or register to comment.