We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7d0d92 commit c4a0adeCopy full SHA for c4a0ade
Setup.hs
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env runhaskell
2
+import Distribution.Simple
3
+main = defaultMain
husk-scheme.cabal
@@ -0,0 +1,21 @@
+Name: husk-scheme
+Version: 1.0
+Synopsis: An R5RS Scheme interpreter written in Haskell.
4
+Description: My super cool, indeed, even mega lambdas
5
+ will demonstrate a basic project. You will marvel.
6
+License: MIT
7
+License-file: LICENSE
8
+Author: Justin Ethier
9
+Maintainer: Justin Ethier <github.com/justinethier>
10
+Cabal-Version: >= 1.2
11
+Build-Depends: base
12
+Executable: huski
13
+Main-is: shell.hs
14
+library
15
+ Exposed-Modules: Scheme.Core
16
+ Scheme.Types
17
+ Scheme.Variables
18
+ Other-Modules: Scheme.Macro
19
+ Scheme.Numerical
20
+ Scheme.Parser
21
+ Build-Depends: base >= 2.0
0 commit comments