Working with strings#

Strings can be stored in variables#

FirstName <- "Larry"
OUTPUT FirstName

Exercises#

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