Cleanup errors and logging a bit

This commit is contained in:
Daniel Gröber
2015-03-04 21:48:21 +01:00
parent bc71877dcf
commit f0ea445a9b
41 changed files with 242 additions and 456 deletions

View File

@@ -1,11 +0,0 @@
module Data.Foo where
foo :: Int
foo = undefined
fibonacci :: Int -> Integer
fibonacci n = fib 1 0 1
where
fib m x y
| n == m = y
| otherwise = fib (m+1) y (x + y)

View File

@@ -15,8 +15,7 @@ build-type: Simple
cabal-version: >=1.8
library
-- exposed-modules:
-- other-modules:
HS-Source-Dirs: lib
build-depends: base
exposed-modules: Data.Foo