mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 11:10:32 +02:00
* NEWS: * README: * doc/r5rs/r5rs.texi: * doc/ref/api-data.texi: * doc/ref/api-debug.texi: * doc/ref/api-evaluation.texi: * doc/ref/api-io.texi: * doc/ref/api-macros.texi: * doc/ref/api-procedures.texi: * doc/ref/api-scheduling.texi: * doc/ref/api-undocumented.texi: * doc/ref/libguile-concepts.texi: * doc/ref/posix.texi: * doc/ref/srfi-modules.texi: * doc/ref/vm.texi: * doc/ref/web.texi: * examples/box-dynamic-module/box.c: * examples/box-dynamic/box.c: * examples/box-module/box.c: * examples/box/box.c: * examples/safe/safe: * examples/scripts/README: * examples/scripts/hello: * gc-benchmarks/larceny/twobit-input-long.sch: * gc-benchmarks/larceny/twobit-smaller.sch: * gc-benchmarks/larceny/twobit.sch: * libguile/expand.c: * libguile/load.c: * libguile/net_db.c: * libguile/scmsigs.c: * libguile/srfi-14.c: * libguile/threads.c: * meta/guile.m4: * module/ice-9/match.upstream.scm: * module/ice-9/ports.scm: * module/language/cps/graphs.scm: * module/scripts/doc-snarf.scm: * module/srfi/srfi-19.scm: * module/system/repl/command.scm: * test-suite/tests/srfi-18.test: Fix typos. Signed-off-by: Ludovic Courtès <ludo@gnu.org> |
||
---|---|---|
.. | ||
box | ||
box-dynamic | ||
box-dynamic-module | ||
box-module | ||
compat | ||
modules | ||
safe | ||
scripts | ||
web | ||
ChangeLog-2008 | ||
check.test | ||
Makefile.am | ||
README |
-*- outline -*- * Overview This directory contains examples illustrating various aspects of Guile programming. If you plan writing Scheme programs, have a look at the `scripts' directory. To learn more about Guile modules, check out the `modules' directory, and maybe the `box-module' and `box-dynamic-module' directories, if you are into C programming or shared libraries, respectively. The `safe' directory contains examples for evaluation Scheme code in controlled environments (sandboxing). The directories `box', `box-module', `box-dynamic' and `box-dynamic-module' are interesting if you plan writing Guile extensions. See the README files in the subdirectories for details. * Included Examples 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. web Simple web servers. compat autoconf code for making a Guile extension compatible with older versions of Guile.