Skip to content

Commit c4a0ade

Browse files
committed
Initial versions, but still need work.
1 parent f7d0d92 commit c4a0ade

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Setup.hs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env runhaskell
2+
import Distribution.Simple
3+
main = defaultMain

husk-scheme.cabal

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Name: husk-scheme
2+
Version: 1.0
3+
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

Comments
 (0)