Basic Operations
Data Manipulation
- Assignment := - Variable assignment.
- Bit Access
- Function Call
- Call a Function Block
- Call a Sub-Program
- CountOf - Returns the number of items in an array.
- DEC - Decrease a numerical variable.
- INC - Increase a numerical variable.
- MoveBlock - Move / Copy items of an array.
- NEG - Performs a negation of the input. (unary operator)
- Parenthesis ( ) - Force the evaluation order in a complex expression.
Control Program Execution
Language Features
These are the language features to control program execution:
Structured Statements
These are the structured statements to control program execution:
Statement |
Description |
---|---|
Switch to one of various possible statements. |
|
Exit from a loop instruction. |
|
Execute iterations of statements. |
|
Conditional execution of statements. |
|
Conditional execution of statements. |
|
Repeat a list of statements. |
|
Suspends the execution of an ST program. |
|
Repeat a list of statements while a condition is TRUE. |