Contents
Up
Previous
Next


Variable assignment statement


The variable assignment statement modifies the value of a variable. This statement obeys the following grammar rule:
variable-assignment :
    target ":=" expression ";"

Unlike the signal assignment, if the value of a variable is modified by an assignment statement, then the new value is the value of the variable when the next sequential statement is executed.