I'm trying to compair an array with two elements to a list
of two known values. The only solution I have been able to
come up with that works correctly is to assign the known list to
another array and compair the two.
@dud eq ("1", "") #Does not equal 1.
@dud eq @dud2 #Does equal 1.
I also tried using the brackets instead of parenthesis but that didn't work either.