Green4TFG wrote:

Me and some of my friends are doing a pass the game challenge and I recently got someones game to work on. Can someone please tell me what this means/does?
<(item (0) of [list v] :: list) = [0]>

That is a boolean; you can tell by the sharp pointy ends. It has an equal sign meaning it's checking if the value on the left, is equivalent to the value on the right. For this case, this block is checking if item 0 of list, is equivalent to 0.

I believe that this should return false since item 0 of a list is a blank space. Last time I checked, a blank space does NOT equal 0.