I have strings which are dynamically allocated using
sb : strings.Builder
...
mystring := strings.clone_from_bytes( sb.buf[:])
...
// need to free mystring
Now, how do I free the memory used by the string.
(The example above is contrived, but in reality I use the same string builder to build several strings, and then I need to free them later).