NTH

[FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - orig-n    
  - orig-list    

Description:

Returns the <n>th element in <list>.
The count starts from 0, i.e. (nth 0 list) is the first element of the list.

Ex. (nth 0 '(1 2 3 4 5 6)) ==> 1
Ex. (nth 2 '(1 2 3 4 5 6)) ==> 3