Idris2/tests/node/node017/dir.idr

15 lines
442 B
Idris

import System.Directory
main : IO ()
main = do Right () <- createDir "testdir"
| Left err => printLn err
Left err <- createDir "testdir"
| _ => printLn "That wasn't supposed to work"
printLn err
ok <- changeDir "nosuchdir"
printLn ok
ok <- changeDir "testdir"
printLn ok
ignore $ writeFile "test.txt" "hello\n"
printLn !currentDir