diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-06-05 17:33:40 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-06-05 17:33:40 +0000 |
commit | 8779d59588ffd0671729562a0195ae98b6017c50 (patch) | |
tree | 1344f0116862dbaf2756b1b50a2da5cad7e7cc4f /examples/README | |
parent | 71c771efdfc2cc49f0bbc43fdc9947cbc09e81dc (diff) |
* box-dynamic-module: New directory, implements the box type in a
shared library and places the definitions in a C-only module.
Thanks to Thomas Wawrzinek for this, too!
* box-dynamic/box.c, box/box.c, box-dynamic-module/box.c,
box-module/box.c (mark_box): Fixed typo in comment.
Diffstat (limited to 'examples/README')
-rw-r--r-- | examples/README | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/examples/README b/examples/README index 0c2c7063a..2a362f2cd 100644 --- a/examples/README +++ b/examples/README @@ -5,9 +5,15 @@ programming. See the README files in the subdirectories for details. -scripts Examples for writing simple scripts in Guile Scheme. -box Example for extending Guile with a new data type. -box-module Similar to `box', but define new procedures in a named module. -box-dynamic Implements the box type in a dynamically loadable library. -modules Examples for writing and using Guile modules. -safe Examples for creating and using safe environments. +scripts Examples for writing simple scripts in Guile Scheme. +box Example for extending Guile with a new data type. +box-module Similar to `box', but defines new procedures in a + named module. +box-dynamic Implements the box type in a dynamically loadable + library. +box-dynamic-module Combination of `box-module' and `box-dynamic': + Implements the `box' type in a shared library and + defines the procedures in a Guile module. +modules Examples for writing and using Guile modules. +safe Examples for creating and using safe environments. + |