EMA-XPS Online


NTH

NTH
===

syntax: (nth <n> <list>)

This function returns the n-th element of the list or
NIL, when the list includes less elements.

example:       >(nth 2 '(1 2 3))
               3
               >(nth 4 '(1 2 3))
               NIL


EMA-XPS Online