[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: ?



I can't resist - this is almost R5RS compliant, but requires
open-input-string from SRFI-6 (MzScheme supports this):

(define (string->word-list str)
  (map symbol->string (read (open-input-string (string-append "(" str
")")))))

(string->word-list "interfering with natural selection amongst the student
population")