reverse
Returns a sequence in which the order of the elements in the argument sequence is reversed
> (setq a '(1 2 3 4))
(1 2 3 4)
> (reverse a)
(4 3 2 1)
> a
(1 2 3 4)
Previous slide
Next slide
Back to first slide
View graphic version