Clear for fast clearing variables
Posted: Fri Aug 27, 2021 10:50 pm
Hello,
I'd like to see a new command, Clear. I know this from other languages, used for fast clearing a bunch of variables at once:
...would set strings to length 0, all other variables to 0, lists and maps emptied.
Just a suggestion...
I'd like to see a new command, Clear. I know this from other languages, used for fast clearing a bunch of variables at once:
Code: Select all
Define first.s,second$,third.l,fourth.i,NewList MyList.s(),NewMap MyMap.l()
;Do stuff and fill variables, lists, etc.
Clear first,second$,third,fourth,MyList(),MyMap()
Just a suggestion...