This commit is contained in:
2026-04-24 14:46:10 -06:00
commit 0ab53a25a7
8 changed files with 836 additions and 0 deletions

38
gyehoek.cabal Normal file
View File

@@ -0,0 +1,38 @@
cabal-version: 3.0
name: gyehoek
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Madeleine Sydney Ślaga
maintainer: msyds@deertopia.net
-- copyright:
category: Language
build-type: Simple
-- extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
-fdefer-type-errors
-fno-show-valid-hole-fits
-fdefer-out-of-scope-variables
-Wno-typed-holes
-fplugin=Effectful.Plugin
executable gyehoek
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.21.2.0
, lens
, text
, recursion-schemes
, effectful
, effectful-core
, effectful-plugin
, qbe
hs-source-dirs: app
default-language: GHC2024