Hi, local variables aren’t completely local right know.
Would it be possible to make them only valid for the current macro?
I ran into some problems until I realized that this:
outputmacro: ^f1()
$$_test = TESTVALUE
^f2()
test is $$_test
outputmacro: ^f2()
$$_test = CHANGED
leads to
Test executing test is CHANGED