[project @ 2001-01-28 17:14:11 by simonmar]
[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'))