@benleggiero I'm confused by this statement. Is it pro-ARC or anti-ARC? To clarify, ARC is "Automatic Reference Counting". Its most well-known implementation is Swift and it
does require adding a lot of memory management keywords into the language (
weak
,
unowned
, etc). On the other hand GC is "Garbage Collection" (like in Java or Go) and it
does not require any keywords in the language.