chickadee » srfi-1 » last

last pairprocedure
last-pair pairprocedure

last returns the last element of the non-empty, finite list PAIR. last-pair returns the last pair in the non-empty, finite list PAIR.

(last '(a b c)) => c
(last-pair '(a b c)) => (c)