HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rickbutton

no profile record

comments

rickbutton
·3 वर्ष पहले·discuss
roll your own runtime does not imply to me `import runtime from "runtime";` but this seems to just be "include deno and use deno"?
rickbutton
·7 वर्ष पहले·discuss
Your definition of garbage collector excludes reference counting, which does not require scanning memory. Reference counting is a form of garbage collection. The type of garbage collection you are referring to is the sub-type of "tracing" garbage collection.

However, I agree, "free()" is not garbage collection, but rather a form of memory management, of which garbage collection is a subset, and manual (free) is another.