R assignment (left-assignment, right-assignment)



examples/basics/assignment.R
x = 1
y <- 2
3 -> z
print(x)  # 1
print(y)  # 2
print(z)  # 3