PickBASIC / FlashBASIC
clear statement
.mdThe clear statement sets all local and common variables to 0 in a main program.
Syntax
clearDescription
In a subroutine, only the local variables are affected. Named common variables are not affected by the clear statement.
Example(s)
Reset every variable to zero / null
x = 5 clear print x ;* 0
See also
Referenced by
1 topic mentions clear statement in its description.