Hi Mark,

* Mark Carter <mcar...@markcarter.me.uk> [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. 

_______________________________________________
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to