Go is a garbage collected language:
http://golang.org/doc/go_faq.html#garbage_collection
Here it says that it\'s a mark-and-sweep garbage collector, but it d
I'm not sure, but I think the current (tip) GC is already a parallel one or at least it's a WIP. Thus the stop-the-world property doesn't apply any more or will not in the near future. Perhaps someone other can clarify this in more detail.