R_Code-1.r (408B)
1 # Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 2 # Repo: https://github.com/notamitgamer/bsc 3 # License: MIT 4 5 # R allows you to assign values to variables in three different ways. 6 7 # Write three lines of code assigning the string "R is fun" to a variable 8 # using Simple Assignment, Leftward Assignment, and Rightward Assignment. 9 10 simple = "R is fun" 11 left <- "R is fun" 12 "R is fun" -> right