about summary refs log tree commit diff stats
path: root/chicanery.scm
blob: 4dba4ca757ba98ecf5a8710d30d5661f04e5bf49 (plain)
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
(module chicanery ()
  (import scheme
          (chicken module)
          (chicken platform))
  (import r7rs utf8)

  (import (scheme base))
  (import (scheme case-lambda))
  (import (scheme char))
  (import (scheme complex))
  (import (scheme cxr))
  (import (scheme eval))
  (import (scheme file))
  (import (scheme inexact))
  (import (scheme lazy))
  (import (scheme load))
  (import (scheme process-context))
  (import (scheme read))
  (import (scheme repl))
  (import (scheme time))
  (import (scheme write))

  (reexport r7rs)
  (reexport (scheme base))
  (reexport (scheme case-lambda))
  (reexport (scheme char))
  (reexport (scheme complex))
  (reexport (scheme cxr))
  (reexport (scheme eval))
  (reexport (scheme file))
  (reexport (scheme inexact))
  (reexport (scheme lazy))
  (reexport (scheme load))
  (reexport (scheme process-context))
  (reexport (scheme read))
  (reexport (scheme repl))
  (reexport (scheme time))
  (reexport (scheme write))
  (reexport utf8)

  (include "extras.scm")

  (register-feature! #:chicanery))