Does END remove everything

BlitzMax Forums/BlitzMax Beginners Area/Does END remove everything

Hi, using miniB3D and Max.

Do I need to free entities, list, images, etc when I end the program? Or will END alone do this?

Thanks
Jim

When the program exits, the OS will remove everything.

BlitzMax doesn't.

Whether one would consider the fact of an app not cleaning up after itself before it quits as lazy coding or not, well... people have their own opinions.

Perhaps it would be nice if all object Delete()'s were called before the app terminating.

When the program exits, the OS will remove everything.
That's reassuring. I clean up anyway.