Created
November 14, 2023 18:33
-
-
Save exarkun/bae08db44bf78e9baeb0263ddc39341d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Directory | |
main = do | |
let dirPath = "/home/exarkun/" | |
setCurrentDirectory dirPath | |
getCurrentDirectory >>= putStrLn | |
files <- getDirectoryContents dirPath | |
putStrLn $ show files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment