Idris2/tests/idris2/perror016/ParseIf4.idr

11 lines
324 B
Idris

import System.File
foo : File -> IO ()
foo file = do
stuff <- fgetLine file
case stuff of
(Left err) => printLn err
(Right content) => if content == ""
then println "Empty"
else blah <- doSomething
putStrLn content