Logo

Programming-Idioms

History of Idiom 19 > diff from v33 to v34

Edit summary for version 34 by wobray:
New Lisp implementation by user [wobray]

Version 33

2017-11-23, 02:47:28

Version 34

2018-03-12, 05:24:31

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Code
(reverse (list 4 5 6 7 8))