find_index function
lfind_index(P, L) returns the index of the first element L that begins with an element satisfying P.
lExample:
lfind_index(odd, [2, 4, 6, 7, 9, 10, 12])
            ==> 3
lIndices start with 0 as for the first element of the list.
l