[plt-scheme] Accessing SRFIs from R6RS
David,
I tried this>>
#!r6rs
(import (srfi :27))
And got this>>
. import: cannot find suitable installed library in: (srfi :27)
I am using version 4.1.4
David Van Horn wrote:
> 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
>
>