Is there any way to create and delete variable at run time? Similar to malloc in C/C++
The plugin I am working on makes two different query_client_cvar calls and then prints the results to console on the same line.
As far as I can tell this means that I have to store the results from the first call in a global variable until the second one has been done and then print both results at the same time.
I would prefer to find a way to avoid using global variables since they will only be used very rarely and will just waste space the rest of the time.