Home :
programming :
chicken
Large
Programming "in the large" - i.e. modularisation and packaging
Compiling/interpretation
Suppose I have two files, foo.scm:
(use extras)
(define (greet)
(write-line "hello world"))
and bar.scm:
(greet)
Obviously, bar.scm depends on foo.scm. The way to get things to work from the interpreter is:
csi foo.scm bar.scm
For compilation:
csc -prologue foo.scm bar.scm
Links to other sites
system - egg inspired by Common Lisp DEFSYTEM macro.
Author: Mark Carter
Created: 27-Mar-2012
Updated: 06-May-2012