Gtools Cabal Download May 2026
cabal install gtools --lib The --lib flag ensures the library is registered globally for GHC.
import Data.GTools.Statistics (permutationTest) import Data.GTools.Sorting (mixedsort) main :: IO () main = do let result = permutationTest [1,2,3] [4,5,6] print result gtools cabal download
packages: . constraints: gtools >=0.1 Then run cabal build inside that project. If gtools is hosted on GitHub but not on Hackage, you can still use cabal to download and build it: cabal install gtools --lib The --lib flag ensures
