Next: , Previous: , Up: Top   [Contents][Index]


1 Overview of the package

This document describes version 0.5.0-devel.1 of MMCK PFDS, a set of CHICKEN language libraries implementing purely functional data structures. CHICKEN is a Scheme–to–C compiler supporting the language features as defined in the “Revised^5 Report on Scheme”.

This package supports POSIX platforms. To run the tests distributed with the source code: this package depends upon the package MMCK Checks.

The package installs the library (mmck pfds) along with its import libraries. To require the library and import its syntactic bindings in a module we can do:

(declare (unit my-module)
         (emit-import-library my-module))

(require-library (mmck pfds))

(module (my-module)
    ()
  (import (scheme)
          (mmck pfds))

  ...

  #| end of module |# )

Next: , Previous: , Up: Top   [Contents][Index]

This document describes version 0.5.0-devel.1 of MMCK PFDS.