Steps to reproduce the bug.
1. Create any number global and assign it a value.
2. Call it somewhere else more than 4 times! Note: calling it indirectly for example assigning it to a local variable does count too.
Issue: the global stops functioning (outputs nothing/is empty). In the example below it should output 1, 2 and 3. Not for 4 because one slot is used up by creating the local variable!
5. Is calling multiple times the local variable… to prove/test if it is only for the number global.
$lv(i, gv(n))$1: $gv(n)$
2: $gv(n)$
3: $gv(n)$
4: $gv(n)$
5: $#i$, $#i$, $#i$, $#i$, $#i$, $#i$, $#i$, $#i$,
$#i$, $#i$, $#i$, $#i$, $#i$, $#i$, $#i$, $#i$
