Definition of = vs. <-
Martin Morgan wrote:
x <- y = 1
Error in (x <- y) = 1 : object 'x' not found
this error does not make sense to me... if the precedence is as the
parentheses suggest, the error should be like in
(x <- y)
# error: object 'y' not found
vQ