gc: gc 6.4 Garbage Collector
gc:
gc: The Boehm-Demers-Weiser conservative garbage collector can be
gc: used as a garbage collecting replacement for C malloc or C++ new.
gc: It allows you to allocate memory basically as you normally would,
gc: without explicitly deallocating memory that is no longer useful. The
gc: collector automatically recycles memory when it determines that it
gc: can no longer be otherwise accessed.
gc:
gc:
gc: Package Created By: Jason Edson 
