new haskell project

This commit is contained in:
Maxime Vorwerk
2024-04-03 15:21:56 +02:00
parent 40af1e76e0
commit 309fabe525
11 changed files with 253 additions and 0 deletions

6
haskell/src/Lib.hs Normal file
View File

@@ -0,0 +1,6 @@
module Lib
( someFunc
) where
someFunc :: IO ()
someFunc = putStrLn "someFunc"