# <-- this symbol is used to start a comment line when you're writing R code
# comment lines are not "run" as part of the code
# you can leave helpful notes for yourself and others!
# create a variable and give it a value
= 3
variable_1
#create a second variable and give it a value
= 3
variable_2
#add the two variables and save the result as a third variable
= variable_1 + variable_2
variable_3
#print the result
print(variable_3)
[1] 6