Erases all values of all variables and strings. Additionally, the CLEAR instruction also erases all data structures. Thus structures, such as arrays, can be redimensioned in the middle of program flow.
Program Example.
00100 INPUT A
00110 PRINT A
00120 CLEAR
00130 PRINT A
00140 END