Split to multiproject

This commit is contained in:
2022-05-16 21:42:11 +03:00
parent 0266d4b06b
commit 03b4cfb3bf
35 changed files with 70 additions and 8 deletions

9
reddit_pub/app/Main.hs Normal file
View File

@ -0,0 +1,9 @@
module Main where
import qualified MyLib (defaultMain)
import System.Environment (getArgs)
main :: IO ()
main = do
[path] <- getArgs
MyLib.defaultMain path