mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 02:23:44 +03:00
16 lines
434 B
Idris
16 lines
434 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
|
|
writeFile "test.txt" "hello\n"
|
|
printLn !currentDir
|
|
|