Up | Next | Prev | PrevTail | Tail |
In symbolic mode, if the left side of an assignment statement is a variable, a setq
of the
right-hand side to that variable occurs. If the left-hand side is an expression, it
must be of the form of an array element, otherwise an error will result. For
example, x:=y
translates into (setq x y)
whereas a(3) := 3
will be valid
if a
has been previously declared a single dimensioned array of at least four
elements.
Up | Next | Prev | PrevTail | Front |