Yes. That is the purpose of using variables.
After the first statement executes, the second statement executes.
PRINT "You have lived more than", AGE*365, " days"
This statement does several things:
AGE
for a value to use.AGE
.So on the monitor you see:
You have lived more than 8395 days
What do you think the following program will write to the monitor?
' Pounds to ounces ' LET POUNDS = 3 PRINT "The number of ounces is ", POUNDS * 16 PRINT "The number of pounds is ", POUNDS END