|
=
|
Batch language command
|
|
Value assignment operator. Assigns the current value of the rhs to the lhs. To create dependancies use ':='.
|
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: 8/19/2002 |
|
|