Aggregate `Makefile.am' files under `examples/'.
[bpt/guile.git] / examples / modules / README
1 -*- outline -*-
2
3 * Overview
4
5 This directory includes examples which show how to write and use Guile
6 modules in Scheme programs.
7
8 The descriptions below assume that you have a working copy of Guile
9 installed and available with the standard installation prefix
10 `/usr/local'.
11
12
13 * Included Examples
14
15
16 ** main
17
18 The main program, which uses the modules described below to perform
19 some actions. Module usage and selective importing as well as
20 renaming is demonstrated here.n
21
22 $ ./main
23
24 or
25
26 guile -s main
27
28 ** module-0.scm, module-1.scm, module-2.scm
29
30 Two modules which export several procedure, some of which have the
31 same names (so that renaming/selection is required for proper
32 importing).