chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] cannot import from undefined module


From: Christian Kellermann
Subject: Re: [Chicken-users] cannot import from undefined module
Date: Wed, 7 Mar 2012 14:09:41 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

Hi Mark,

* Mark Carter <address@hidden> [120307 14:03]:
> If I try to import srfi-6 in my module, like so:
> 
> (module 
>  mccsl ( define-simple-syntax)
>  (import scheme chicken)
>  (import srfi-6)
>   ...
> )
> 
> I get the compilation error
> Syntax error (import): cannot import from undefined module
> 
> What do I do to fix this? It's all proving to be an uphill battle.

There is no module called srfi-6. The list of available modules
that are included in chicken-core is described in the manual:
http://api.call-cc.org/doc/chicken/language all extensions have to
be installed with chicken-install and loaded with (use) or
(require-extension). A list of it is available http://wiki.call-cc.org/eggs
or searchable here: http://api.call-cc.org/doc/

string ports are available throught the ports unit:
http://api.call-cc.org/doc/ports

HTH,

Christian

-- 
Who can (make) the muddy water (clear)? Let it be still, and it will
gradually become clear. Who can secure the condition of rest? Let
movement go on, and the condition of rest will gradually arise.
 -- Lao Tse. 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]