You are looking at historical revision 4999 of this page. It may differ significantly from its current revision.

Well I am putting some tips to myself here...

Using Emacs to work with chicken

 On a Debian system run {{apt-get install quack}}. Otherwise, go to [[http://www.cs.huji.ac.il/support/emacs/pllab.html]]
; (setq quack-default-program "csi")
; (require 'quack)

Some Books about Scheme

Chicken User's Manual

http://chicken.wiki.br/The%20User%27s%20Manual

To access the manual from the REPL:

csi> (use man)
csi> (man:load)
csi> (man:search "regex")
csi> (man:help 'something-that-exists)

Example:

#;1> (use man)
#;2> (man:load)
#;4> (man:search "case")
#;5> (man:help 'case-lambda)