titlecase 1 → 1.0.1
raw patch · 2 files changed
+8/−4 lines, 2 files
Files
- Main.hs +4/−1
- titlecase.cabal +4/−3
Main.hs view
@@ -4,4 +4,7 @@ import System.Environment main :: IO ()-main = getArgs >>= putStrLn . titlecase . unwords+main = getArgs >>= parseArgs >>= putStrLn . titlecase+ where parseArgs :: [String] -> IO String+ parseArgs [] = getContents+ parseArgs xs = return $ unwords xs
titlecase.cabal view
@@ -1,14 +1,15 @@--- This file has been generated from package.yaml by hpack version 0.17.0.+-- This file has been generated from package.yaml by hpack version 0.18.1. -- -- see: https://github.com/sol/hpack name: titlecase-version: 1+version: 1.0.1 license: BSD3 license-file: LICENSE author: Nikita Karetnikov, Peter Simons,- Aaron Wolf+ Aaron Wolf,+ Serg Nesterov maintainer: Peter Simons <simons@cryp.to> homepage: https://github.com/peti/titlecase#readme bug-reports: https://github.com/peti/titlecase/issues