1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00
guile/examples
2008-09-11 21:28:21 +02:00
..
box Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
box-dynamic Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
box-dynamic-module Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
box-module Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
compat * srfi-39.scm: Update copyright statement to LGPL. 2008-01-22 21:06:22 +00:00
modules Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
safe Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
scripts Remove `.cvsignore' files. 2008-09-11 21:28:21 +02:00
ChangeLog * srfi-39.scm: Update copyright statement to LGPL. 2008-01-22 21:06:22 +00:00
Makefile.am merge from 1.8 branch 2006-04-16 23:37:40 +00:00
README * README: Added description of compat. 2002-12-01 03:33:26 +00:00

							       -*- 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.

compat		    autoconf code for making a Guile extension
		    compatible with older versions of Guile.