Important date on: Wednesday
Here are the complicated parts of the program:
LET WHICH = 1 LET HOTDATE$ = DAY$(WHICH+2)
You can understand what goes on
by going through the steps of a LET
statement:
HOTDATE$
.WHICH
is replaced with its value: 1DAY$(3)
is found: "Wednesday"HOTDATE$
Done!
Go through these steps a few times. Understanding how this works now will save you effort later on.
How much later on?