Navigation Banner
 

= 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

 
Sergei L. Kosakovsky Pond and Spencer V. Muse, 1997-2002