Earlier quoted context omitted.
> As far as I'm concerned, V works as described in their documentation. Really? Can you explain to me how memory management works in V?
V (which is at 0.2.4) is using -gc boehm, which is presently the default. On present versions, you don't have to do anything to enable it. On older versions, you needed to enable -gc boehm. You can choose to use and enable Autofree (-autofree), which works, but you have to know what you are doing. Thus it's best to refer to examples of its usage. Then you can also manage memory manually, where of course you clearly m…
EDIT:
> which works, but you have to know what you are doing
This does not feel very convincing...