Okay, so I am trying to compare two lists to see if they contain the same string.
mylist = "aunt uncle grandma"
mylist2 = "fish cheese aunt"
loop i (listlen $mylist) [ loop u (listlen $mylist2) [ if (= (at $mylist $i) (at $mylist2 $u)) [echo Yes] [echo no] ] ]
I thought I could just use a loop to loop through the first list, then compare that to the second one, which I loop through at the same time.