t3x.org / sketchy / library / last.html
SketchyLISP
Reference
  Copyright (C) 2007
Nils M Holm

last

Conformance: SketchyLISP Extension

Purpose: Extract the last member of a list.

Arguments:
X - list

Implementation:

(define (last x)
  (car (reverse x)))

Example:

(last '(a b c d e f)) 
=> f

See also:
tail?, head?.