merge guile-vm to guile
[bpt/guile.git] / examples / modules / README
CommitLineData
673509f8
MG
1 -*- outline -*-
2
3* Overview
2de7ddb7
MG
4
5This directory includes examples which show how to write and use Guile
6modules in Scheme programs.
7
8The descriptions below assume that you have a working copy of Guile
9installed and available with the standard installation prefix
10`/usr/local'.
11
673509f8
MG
12
13* Included Examples
14
15
16** main
2de7ddb7
MG
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
673509f8 28** module-0.scm, module-1.scm, module-2.scm
2de7ddb7
MG
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).