# Let's create an object called mean_x. # The # symbol is used in R to indicate comments. It is not processed by R. # It is important to add comments to code so that it can be understood and used by other people. mean_x <- (2 + 6) / 2 # Typing its name will return its value. > mean_x [1] 4