Documentation
FirstName <- "Larry" OUTPUT FirstName
Exercise
Predict what is printed when runs these statements.
X <- "Tom" Y <- "Fred" Z <- "Henry" Z <- Y Y <- X X <- Z OUTPUT X OUTPUT Y OUTPUT Z