|
:=
|
Batch language command
|
|
Dependance assignment operator. Assigns the formula defined by the rhs to the lhs. This operator should be used to constrain variables before optimization.
|
Syntax
|
LHS := RHS;
|
Notes
|
|
Examples
|
a=2; b=3; c:=a+b; d=a+b; a=4; fprintf (stdout, a," ",b," ",c," ",d); -- outputs 4 3 7 5.
|
|
Last modified: 5/11/2000 |
|
|