CLEAR
CLEAR
Delete all variables and recover the memory used by them.
See ERASE for deleting specific array variables.
forget$ = "I have short term memory"
remember = 42
PRINT forget$
I have short term memory
PRINT remember
42
CLEAR
PRINT forget$
PRINT remember
0
See also:
DATA
DIM
ERASE
LET
READ
RESTORE
Applies to:
CGCOLORMAX
CGMMSTICK
CGMICROBOARD
CGMICROMITE
CONTINUE
CONTINUE
Resume running a program that has been stopped by an END statement, an error, or CTRL-C (can be redefined by OPTION BREAK). The program will restart with the next statement following the previous stopping point.
See also:
OPTION BREAK
RUN
Applies to:
CGCOLORMAX
CGMMSTICK
CGMICROBOARD
CGMICROMITE
- « Previous Page
- 1
- …
- 15
- 16
- 17
- 18
- 19
- …
- 22
- Next Page »