In R, what is the difference between `=` and `<-` for assignment inside a function call?
-
A
They are completely interchangeable
-
B
= assigns locally in the call; <- assigns in the current environment
-
C
= assigns globally; <- assigns locally
-
D
There is no difference in R 4.0+