From 0f03dc20b704fb447c99e2fb921a4f4667d22076 Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 5 Nov 2019 21:15:48 +0000 Subject: [PATCH] Clean up --- app/Main.hs | 4 +--- src/Lib.hs | 6 ------ 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 src/Lib.hs diff --git a/app/Main.hs b/app/Main.hs index de1c1ab..e554c0b 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,6 +1,4 @@ module Main where -import Lib - main :: IO () -main = someFunc +main = putStrLn "Nothing to see here, move along." diff --git a/src/Lib.hs b/src/Lib.hs deleted file mode 100644 index d36ff27..0000000 --- a/src/Lib.hs +++ /dev/null @@ -1,6 +0,0 @@ -module Lib - ( someFunc - ) where - -someFunc :: IO () -someFunc = putStrLn "someFunc"