README 717 B

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