- First version. Released on an unsuspecting world.
Created
August 1, 2024 16:32
-
-
Save mpickering/bb13bae26146f0dfa39cb93241f1599c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "hello" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE CPP #-} | |
module MyLib (someFunc) where | |
someFunc :: IO () | |
someFunc = putStrLn FOO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ghc-options: -DFOO=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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