R_Code-1.r (282B)
1 # R allows you to assign values to variables in three different ways. 2 3 # Write three lines of code assigning the string "R is fun" to a variable 4 # using Simple Assignment, Leftward Assignment, and Rightward Assignment. 5 6 simple = "R is fun" 7 left <- "R is fun" 8 "R is fun" -> right