Provided build in Cabal, scaffolded project.

This commit is contained in:
stephenszwiec
2026-07-14 19:27:25 -05:00
parent f3cd31abf6
commit 8ca4d4f58b
4 changed files with 212 additions and 1 deletions

18
h2h-sorter.cabal Normal file
View File

@@ -0,0 +1,18 @@
cabal-version: 3.0
name: h2h-sorter
version: 0.2.0
synopsis: simple head-to-head sorter with backtracking.
license: GPL-3.0-or-later
license-file: LICENSE
author: hpcdisrespecter
build-type: Simple
extra-doc-files: README.md
executable h2h_sorter
main-is: Main.hs
hs-source-dirs: src
build-depends: base >=4.14 && <5
, array
, mtl
, random
default-language: Haskell2010
ghc-options: -Wall -O2