LordGeoffrey wrote: > I am playing with R6RS, and I am trying to access some of the SRFIs. I > tried > #!r6rs > (import (srfi 27)) Change 27 to :27 and it should work. (This is an artifact of R6RS requiring all library names to be identifiers, so a number is disallowed). David