(define (thing stuff)
  (cond ((= (count stuff) 1) stuff)
        (else (word (first stuff) 
                    (thing (bf stuff)) 
                    (first stuff)))))

(thing "able was i er")