norvig / paip-lisp

Lisp code for the textbook "Paradigms of Artificial Intelligence Programming"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error in code of chapter one in github pages book

marcellowoods opened this issue · comments

(mappend #'(lambda (l) (list l (reverse l)))
((1 2 3) (a b c)))

should be

(mappend #'(lambda (l) (list l (reverse l)))
'((1 2 3) (a b c)))