On Wednesday, 4 September 2013 at 07:04:01 UTC, Elvis wrote:
I'm new to D, from what I read in Reddit these days, it's really really bad that D's supporter always claim that D support Manual Memory Management and GC can be disabled , despite the truth that druntime/phobos are parts of D to an end user!
I dislike GC but I dislike misleading much more!

It's really possible.

You can use malloc/free for manual memory management. For example, Vibe.d use it, and it's really fast.

You can disable automatic GC run and run GC manually:
http://dlang.org/phobos/core_memory.html

Also, you can remove GC at all:
https://bitbucket.org/timosi/minlibd/overview

Reply via email to