Skip to content

Commit 1bf612b

Browse files
committed
Small cleanup
1 parent acd3edb commit 1bf612b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

emacs-training-outline.org

+5-2
Original file line numberDiff line numberDiff line change
@@ -1298,11 +1298,14 @@ numerical value.
12981298

12991299
** Use a recursive function to implement "flatten"
13001300

1301+
(append '(1) '(2) '(3) '(4))
1302+
13011303
#+BEGIN_SRC emacs-lisp
13021304
(defun flatten (x)
13031305
(cond ((null x) nil)
1304-
((listp x) (append (flatten (car x)) (flatten (cdr x))))
1305-
(t (list x))))
1306+
((listp x)
1307+
(append (flatten (car x)) (flatten (cdr x))))
1308+
(t (list x))))
13061309

13071310
(flatten '((1 2) ((3 4))))
13081311
#+END_SRC

0 commit comments

Comments
 (0)