Hi, I'm just beginning this nice hashkell beginners tutorial:
on this page on lists he explains that lists are compared in compared in lexicographical order, he gives this example:
ghci> [3,2,1] > [2,10,100]
True
From some googling it seems to me that lexicographical ordering means in alphabetical or sequential number ordering(?), but I still can't make sense of this evaluating to True.
I'm missing something obvious here, can anybody help?