Skip to content

Commit 65476d5

Browse files
committed
Limit exports from Core
1 parent 5b5f156 commit 65476d5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

core.hs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,14 @@
1616
-
1717
- -}
1818

19-
module Scheme.Core where
19+
module Scheme.Core
20+
(
21+
eval
22+
, evalString
23+
, evalAndPrint
24+
, primitiveBindings -- FUTURE: this may be a bad idea...
25+
-- but there should be an interface to inject custom functions written in Haskell
26+
) where
2027
import Scheme.Macro
2128
import Scheme.Numerical
2229
import Scheme.Parser

0 commit comments

Comments
 (0)