File: dependencies.scm

package info (click to toggle)
mit-scheme 12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,300 kB
  • sloc: lisp: 781,881; xml: 425,435; ansic: 86,059; sh: 10,135; makefile: 2,501; asm: 2,121; csh: 1,143
file content (49 lines) | stat: -rw-r--r-- 1,003 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(define-library (foo mumble)
  (import (scheme base))
  (export foo-mumble?
	  make-foo-mumble
	  foo-mumble-a
	  foo-mumble-b)
  (begin
    (define-record-type <foo-mumble>
	(make-foo-mumble a b)
	foo-mumble?
      (a foo-mumble-a)
      (b foo-mumble-b))))

(define-library (foo bletch)
  (import (scheme base))
  (export foo-bletch?
	  make-foo-bletch
	  foo-bletch-thing)
  (begin
    (define-record-type <foo-bletch>
	(make-foo-bletch thing)
	foo-bletch?
      (thing foo-bletch-thing))))

(define-library (foo grumble)
  (import (scheme base))
  (export foo-grumble?
	  make-foo-grumble
	  foo-grumble-a
	  foo-grumble-b)
  (begin
    (define-record-type <foo-grumble>
	(make-foo-grumble a b)
	foo-grumble?
      (a foo-grumble-a)
      (b foo-grumble-b))))

(define-library (foo quux)
  (import (scheme base))
  (export foo-quux?
	  make-foo-quux
	  foo-quux-a
	  foo-quux-b)
  (begin
    (define-record-type <foo-quux>
	(make-foo-quux a b)
	foo-quux?
      (a foo-quux-a)
      (b foo-quux-b))))