home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / oct93 / develop / umbscheme.lha / UMBScheme / README < prev    next >
Text File  |  1992-08-04  |  1KB  |  57 lines

  1. Distribution Files for UMB Scheme $Revision: 2.5 $
  2.  
  3. README            This list of files.
  4. scheme.texinfo        UMB Scheme Release Notes (supplied as hardcopy).
  5. Makefile        For compiling UMB Scheme.
  6. prelude.scheme        The Scheme prelude -- primitives loaded at startup.
  7. scheme.l        UMB Scheme manual page (in man(1) format).
  8.  
  9.  
  10. Source files:
  11.  
  12. portable.h        Portability considerations.
  13.  
  14. steering.c        UMB Scheme steering -- including main()
  15. steering.h
  16.  
  17. debug.c                  Debugger steering and debug primitives.
  18. debug.h
  19.  
  20. architecture.c        Registers, stacks, heap, name handling.
  21. architecture.h
  22.  
  23. object.c        Scheme objects.
  24. object.h
  25.  
  26. io.c            Read, display, print, file handling.
  27. io.h
  28.  
  29. compiler.c        Compiler: Expression -> Graph.
  30. compiler.h
  31.  
  32. eval.c            Eval().
  33. eval.h
  34.  
  35. primitive.c        Primitives implemented in C (other than numbers).
  36. primitive.h
  37.  
  38. number.c        Number primitives.
  39. number.h    
  40.  
  41. bignum.c        Bignum (integers of arb magnitude) support.
  42. bignum.h
  43.  
  44. complex.c        Complex number support.
  45. complex.h
  46.  
  47. fixnum.c        Fixnum (smaller integers) support.
  48. fixnum.h
  49.  
  50. real.c            Real number (C double) support.
  51. real.h
  52.  
  53. rational.c        NB: rationals not yet implemented (skeletons).
  54. rational.h
  55.  
  56. See the UMB Scheme Release Notes (scheme.texinfo) for installation instructions.
  57.