Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 8de1f55ea6a1a64d0f3f3ea116288458 > files > 75

happy-1.17-3mdv2009.0.i586.rpm


module Main (main) where

import Parser (parse)
import IO (hPutStrLn, stderr)

main :: IO ()
main = do x <- getContents
          case parse x of
              Left e -> hPutStrLn stderr $ "Failed with: " ++ e
              Right t -> print t