Skip to content

Commit

Permalink
Bare minimal skeleton app
Browse files Browse the repository at this point in the history
  • Loading branch information
bos committed Feb 18, 2014
1 parent fd4ee52 commit fb7229f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/App.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Main (main) where

main :: IO ()
main = do
return ()
11 changes: 11 additions & 0 deletions criterion.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,17 @@ library
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs

executable criterion
hs-source-dirs: app
main-is: App.hs

ghc-options:
-Wall -threaded -rtsopts

build-depends:
base,
criterion

test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
Expand Down

0 comments on commit fb7229f

Please sign in to comment.