How do I delete a variable after I am done using it? I've created a variable in one function: m.foo = "bar"
Then in a different function, I'd like to delete it since I no longer need it and wish for the variable to no longer take up any more memory space. How can I do this?