So. Rust.
I need an array of strings.
The array must be dynamically growable at runtime. The strings are not known until runtime, but once known are immutable. If they are removed from the vector they should be freed.
I said: static mut root:Vec<str> = Vec();
It did NOT like it
5
1
12

