got it working B)

This commit is contained in:
2022-08-20 03:18:43 +02:00
parent 8c38dbe69e
commit 8f4ed393d2
9 changed files with 301 additions and 42 deletions

View File

@ -1,6 +1,12 @@
module Main where
import Lib
import Parsing
import Types
main :: IO ()
main = someFunc
main = do
content <- fmap (concat . lines) getContents
print (stringToHTML content)
putStrLn ""
print (htmlToString $ stringToHTML content)