How to Free a Bank?

BlitzMax Forums/BlitzMax Beginners Area/How to Free a Bank?

Also, how do you free the contents of a large memory bank in BlitzMax before the application is terminated? I used to use the FreeBank() command in BlitzPlus but it's not listed in the docs.

Thanks

Seb

bank=null

and optionally followed by:

gccollect

If it's before the app is terminated, don't bother, it will be autmatically freed when you terminate.

Thanks CS_TBL - just what I was looking for!