Initial import
This commit is contained in:
commit
babdc90cef
9 changed files with 255 additions and 0 deletions
36
package.yaml
Normal file
36
package.yaml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
name: hcat
|
||||
version: 0.0.1.0
|
||||
license: MIT
|
||||
author: "Alexander Kobjolke"
|
||||
maintainer: "alex@jakalx.net"
|
||||
copyright: "Alexander Kobjolke 2023"
|
||||
description: "Hcat example from the book 'Effective Haskell'"
|
||||
|
||||
extra-source-files:
|
||||
- README.org
|
||||
|
||||
dependencies:
|
||||
- base >= 4.13 && < 5
|
||||
# - bytestring
|
||||
# - text
|
||||
# - time
|
||||
# - process
|
||||
# - directory
|
||||
|
||||
ghc-options:
|
||||
- -Wall
|
||||
- -Wunused-packages
|
||||
|
||||
library:
|
||||
source-dirs: src
|
||||
verbatim:
|
||||
default-language: GHC2021
|
||||
|
||||
executables:
|
||||
hcat:
|
||||
source-dirs: app
|
||||
main: hcat.hs
|
||||
dependencies:
|
||||
- hcat
|
||||
verbatim:
|
||||
default-language: GHC2021
|
||||
Loading…
Add table
Add a link
Reference in a new issue