Skip to content

Instantly share code, notes, and snippets.

@mkscrg

mkscrg/Lib.hs Secret

Last active April 1, 2016 22:56
Show Gist options
  • Save mkscrg/13cac8bd35b0e9e35ec3384ef9681503 to your computer and use it in GitHub Desktop.
Save mkscrg/13cac8bd35b0e9e35ec3384ef9681503 to your computer and use it in GitHub Desktop.
name: bnp-test
version: 0.1.0.0
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Lib, Prelude
build-depends: base-noprelude, classy-prelude
default-language: Haskell2010
module Lib
( someFunc
) where
someFunc :: MonadIO m => m ()
someFunc = hPutStrLn stdout "someFunc"
module Prelude
( module ClassyPrelude
) where
import ClassyPrelude
resolver: lts-5.10
packages:
- .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment