about summary refs log tree commit diff stats
path: root/js/games/nluqo.github.io/~bh/61a-pages/Lectures/2.2/tree3.scm
blob: 09f901cd3f43754512484f8e988fe217b7e1716d (plain) (blame)
1
2
3
4
5
6
(define (deep-map fn xmas)
  (cond ((null? xmas) '())
	((pair? xmas)
	 (cons (deep-map fn (car xmas))
	       (deep-map fn (cdr xmas))))
	(else (fn xmas))))