CONTENTS | PREV | NEXT
5C. assignment (:=)
-------------------
The basic format of an assignment is:   <var> := <exp>
Examples: a:=1,  a:=myfunc(),  a:=b*3

In E multiple variables can be assigned at once, when <exp> is
a function that returns multiple returnvalues. (see  6G )