(define (thing stuff) (cond ((= (count stuff) 0) "") ((equal? (last stuff) " ") (thing (bl stuff))) (else (word (last stuff) (thing (bl stuff)))))) (thing "evil o")