LAST-N

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - list a list  
  - n number of elements [default = 0]

Description:

Returns the <n> last elements of <list>

Ex. (last-n '(1 2 3 4 5) 3) => (3 4 5)