blob: a7774015ba07e3bdb2dc4f416e73c509c0960eba [file] [log] [blame]
(defun mapcar (fun list)
(if list
(cons (funcall fun (car list))
(mapcar fun (cdr list)))
nil))