Garbage Collection
From Pointui
Objects are garbage collected when they go out of scope. There is no way to explicitly free an object. If an object is only to live for a short time then that can be ensured by declaring it within a method for instance so it will be garbage collected when the method is left.
