about summary refs log tree commit diff stats
path: root/js/games/nluqo.github.io/~bh/61a-pages/Lectures/2.2/sentence.scm
blob: 1f32cc66d699897d8627de97a63f06482e075929 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(define (se a b)
  (cond ((word? a) (se (list a) b))
	((word? b) (se a (list b)))
	(else (append a b)) ))

(define (word? x)
  (or (symbol? x) (number? x)) )