829a9f9df4e22ea62351cd961f1270327affe6be
[ghc-hetmet.git] / ghc / tests / io / should_run / io009.hs
1 import Directory (getDirectoryContents)
2 import List (sort, isPrefixOf)
3
4 main = do
5     names <- getDirectoryContents "."
6     let names' = filter (isPrefixOf "io009") names
7     putStrLn (unlines (sort names'))