I have something similar to the following:
composer.setVariable("id","12345") print(composer.getVariable("id")) -- outputs 12345
When I set nil to this variable like so:
composer.setVariable("id",nil) print(composer.getVariable("id")) -- outputs 12345
it still outputs 12345
I’d like to clear the variable. How would I do that or is not possible using composer.setVariable?