mad/byg/src/Main.hs

16 lines
300 B
Haskell
Raw Normal View History

2024-09-11 22:32:14 +02:00
module Main where
2024-09-21 17:13:20 +02:00
import ComputationM
import Functions
2024-09-21 18:49:50 +02:00
test :: ComputationM ()
test = do
dir <- inject "retter"
2024-09-21 17:41:04 +02:00
dirContents <- listDirectory dir
2024-09-21 20:08:54 +02:00
_ <- mapComputationM openImage dirContents
t <- inject ("hej", "hey.txt")
saveFile t
2024-09-11 22:32:14 +02:00
main :: IO ()
2024-09-21 17:13:20 +02:00
main = mapM_ print $ evalComputationM test