Skip to content
Snippets Groups Projects
Commit de74cc4b authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

remove the useless template library

parent cab0558b
Branches
Tags
1 merge request!1Simplistic implementation of download
module Main where
import qualified MyLib (someFunc)
main :: IO ()
main = do
putStrLn "Hello, Haskell!"
MyLib.someFunc
......@@ -65,7 +65,7 @@ library
import: warnings
-- Modules exported by the library.
exposed-modules: MyLib
exposed-modules:
-- Modules included in this library but not exported.
-- other-modules:
......
module MyLib (someFunc) where
someFunc :: IO ()
someFunc = putStrLn "someFunc"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment