Describe how Variable assignment works in R!
Variables can be assigned using either the = or the <- (and ->) operator.
=
<-
->
Multi assignments like a = b = c = 1 are also possible (in this case a,b,c are equal to 1)
a = b = c = 1