1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00
guile/examples
Andy Wingo 183f3db22e add examples/ethreads/memcached-{client,server}
* examples/ethreads/memcached-client.scm:
* examples/ethreads/memcached-server.scm: Two new ethreads examples.
  Not really optimized, no consideration for memory use, but perhaps
  instructive.
2016-06-09 11:08:37 +02:00
..
box Change Guile license to LGPLv3+ 2009-06-17 00:22:09 +01:00
box-dynamic Change Guile license to LGPLv3+ 2009-06-17 00:22:09 +01:00
box-dynamic-module Change Guile license to LGPLv3+ 2009-06-17 00:22:09 +01:00
box-module Change Guile license to LGPLv3+ 2009-06-17 00:22:09 +01:00
compat Properly quote the first argument to `AC_DEFINE{,_UNQUOTED}'. 2009-11-24 23:38:26 +01:00
ethreads add examples/ethreads/memcached-{client,server} 2016-06-09 11:08:37 +02:00
modules Aggregate Makefile.am' files under examples/'. 2009-03-24 23:54:38 +01:00
safe Aggregate Makefile.am' files under examples/'. 2009-03-24 23:54:38 +01:00
scripts Aggregate Makefile.am' files under examples/'. 2009-03-24 23:54:38 +01:00
web (web http): keys are always symbols 2011-01-08 20:50:46 -08:00
ChangeLog-2008 Rename ChangeLog' files to ChangeLog-2008'. 2008-09-12 21:49:58 +02:00
check.test Aggregate Makefile.am' files under examples/'. 2009-03-24 23:54:38 +01:00
Makefile.am add simple web app examples 2010-12-02 11:47:19 +01:00
README add simple web app examples 2010-12-02 11:47:19 +01: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.

web		    Simple web servers.

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