V has always offered flexible memory management.
The default is GC, which works well for 90%+ of use cases.
You can also use manual memory management with -gc none, just like in C.
Now, with the -ownership flag, V also supports Rust's ownership model!
More details soon ;)