2024-09-11 22:32:14 +02:00
|
|
|
module Main where
|
|
|
|
|
2024-09-21 17:13:20 +02:00
|
|
|
import ComputationM
|
2024-09-21 20:00:59 +02:00
|
|
|
import Functions
|
2024-09-21 16:35:13 +02:00
|
|
|
|
2024-09-21 18:49:50 +02:00
|
|
|
test :: ComputationM ()
|
2024-09-21 16:35:13 +02:00
|
|
|
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
|
2024-09-21 20:00:59 +02:00
|
|
|
t <- inject ("hej", "hey.txt")
|
|
|
|
saveFile t
|
2024-09-21 16:35:13 +02:00
|
|
|
|
2024-09-11 22:32:14 +02:00
|
|
|
main :: IO ()
|
2024-09-21 17:13:20 +02:00
|
|
|
main = mapM_ print $ evalComputationM test
|