mad/byg/src/Main.hs

20 lines
383 B
Haskell
Raw Normal View History

2024-09-11 22:32:14 +02:00
module Main where
import Types
2024-09-21 17:13:20 +02:00
import ComputationM
testSub :: ComputationM TokenNotTraversable Image
testSub = do
inp <- getListElem
openImage inp
test :: ComputationM TokenNotTraversable ()
test = do
dir <- inject "retter"
2024-09-21 17:41:04 +02:00
dirContents <- listDirectory dir
u <- mapListTaken testSub dirContents
pure $ NoToken
2024-09-11 22:32:14 +02:00
main :: IO ()
2024-09-21 17:13:20 +02:00
main = mapM_ print $ evalComputationM test