chickadee » system » define-system

(define-system NAME COMPONENT ...)syntax

Defines a system with the given name and components. This form expands roughly into:

(define NAME
  (make <system> ...))

NAME should be a symbol, COMPONENT should either be an instance of <file> (or one of its subclasses) or a string or symbol, which is an abbreviation of (scheme-file COMPONENT).