Automatic Reclamation
2010-12-11
Introduction
Memory management is a common issue in programming. Many programming languages can automatically reclaim memory that is used by objects that are no longer reachable (and thus can no longer be used). This process is often called garbage collection. Mana goes one step further and automatically manages other resources as well. One example of these are file handles; Mana will automatically close open files that you can no longer use.