We are passing some parameters into an external module such as:
{myVar = mNav}
In the external module we make bm = to myVar
local bm = params.myVar
Now bm = mNav
We use mNav as a variable to do stuff within the module, but we would also like to have a string version “mNav” so we can call functions such as funcbm. We can’t call this unless the value of bm is defined within speech marks such as “mNav”
Is there an easy way to turn the name of bm into a string e.g. mNav into “mNav”?