Buggy array expansion
let a = [ 0 1 ]
let b = [ 0 1 ]
let a b \\= 0 @a[0]
echo @b[0]
>>> 0
Filtering is done on a, than the filtering on b takes the modified value of a to filter itself.
Edited by AdminXVII
let a = [ 0 1 ]
let b = [ 0 1 ]
let a b \\= 0 @a[0]
echo @b[0]
>>> 0
Filtering is done on a, than the filtering on b takes the modified value of a to filter itself.