(list-index predicate list) -> value
Returns the first instance in list for which predicate would return #t, or true. If no instance is found, returns false. Uses the indexing system
Example:
>>(list-index integer? '(a 2 4 e)) :: 1