Skip to content

Instantly share code, notes, and snippets.

@mpickering
Created August 1, 2024 16:32
Show Gist options
  • Save mpickering/bb13bae26146f0dfa39cb93241f1599c to your computer and use it in GitHub Desktop.
Save mpickering/bb13bae26146f0dfa39cb93241f1599c to your computer and use it in GitHub Desktop.

Revision history for test

0.1.0.0 -- YYYY-mm-dd

  • First version. Released on an unsuspecting world.
echo "hello"
{-# LANGUAGE CPP #-}
module MyLib (someFunc) where
someFunc :: IO ()
someFunc = putStrLn FOO
ghc-options: -DFOO=1
cabal-version: 3.0
name: test
version: 0.1.0.0
license: NONE
author: Matthew Pickering
maintainer: [email protected]
build-type: Configure
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: MyLib
build-depends: base ^>=4.20.0.0
hs-source-dirs: src
default-language: Haskell2010
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment