Greetings!
Is there any purpose to de-initializing variables? Like this:
Will this save memory? ...string space? ...free resources? ...anything?
------------------
Don Ewald
mailto:[email protected][email protected]</A>
Is there any purpose to de-initializing variables? Like this:
Code:
I& = 0 Check$ = "PowerBASIC" DO WHILE I& < 100 'code here PRINT Check$ INCR I& LOOP Check$ = "" I& = 0
------------------
Don Ewald
mailto:[email protected][email protected]</A>
Comment