Idris2/tests/idris2/error/perror016/ParseIf4.idr

11 lines
324 B
Idris
Raw Normal View History

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