I have experimenting a little with loading shared libraries using load as in, for example, (load "text.so")
If a function in the shared library is changed and the shared library is recreated, it seems that the second (load "text.so") does not overwrite the first definition of the function.
Is there a way to update what has been loaded previously by the first (load "text.so")?
Thanks.