Initial import
This commit is contained in:
commit
babdc90cef
9 changed files with 255 additions and 0 deletions
40
hcat.cabal
Normal file
40
hcat.cabal
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
cabal-version: 1.12
|
||||
|
||||
-- This file has been generated from package.yaml by hpack version 0.34.4.
|
||||
--
|
||||
-- see: https://github.com/sol/hpack
|
||||
|
||||
name: hcat
|
||||
version: 0.0.1.0
|
||||
description: Hcat example from the book 'Effective Haskell'
|
||||
author: Alexander Kobjolke
|
||||
maintainer: alex@jakalx.net
|
||||
copyright: Alexander Kobjolke 2023
|
||||
license: MIT
|
||||
build-type: Simple
|
||||
extra-source-files:
|
||||
README.org
|
||||
|
||||
library
|
||||
exposed-modules:
|
||||
HCat
|
||||
other-modules:
|
||||
Paths_hcat
|
||||
hs-source-dirs:
|
||||
src
|
||||
ghc-options: -Wall -Wunused-packages
|
||||
build-depends:
|
||||
base >=4.13 && <5
|
||||
default-language: GHC2021
|
||||
|
||||
executable hcat
|
||||
main-is: hcat.hs
|
||||
other-modules:
|
||||
Paths_hcat
|
||||
hs-source-dirs:
|
||||
app
|
||||
ghc-options: -Wall -Wunused-packages
|
||||
build-depends:
|
||||
base >=4.13 && <5
|
||||
, hcat
|
||||
default-language: GHC2021
|
||||
Loading…
Add table
Add a link
Reference in a new issue