« Giving XMMS the "what for" with Perl (AKA, C developers, append to enums, don't insert) | Main
January 16, 2007
What the Haskell!?
I know I said my next directory recurser would be in Ruby, but Haskell has drawn my attention in a big way. Here's what I came up with...
module Main whereimport IO
import System
import Directorymain = do
[recDir] <- getArgs
printDirectory recDirprintDirectory path = do
putStrLn path
contents <- getDirectoryContents path
mapM_ (\f -> do
let newPath = (path ++ "/" ++ f)
isaDir <- doesDirectoryExist newPath
if isaDir
then printDirectory newPath
else putStrLn newPath
) (drop 2 contents)
Haskell seems like a pretty sweet language that I can learn a lot from. The pattern matching is very sweet and I'm looking forward to having a good understanding of Monads.
Posted by Casey at January 16, 2007 09:29 PM