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

(thing "i am a cow")