hs-cli
hs-cli copied to clipboard
Command Line Interface Utility (Printing, Formatting, Options parsing) for Haskell
Example: ``` import Console.Options import Data.Char (isDigit) import Data.Monoid data MyADT = A | B | C deriving (Show,Eq) main = defaultMain $ do nameFlag Right s) command "sample" $...
Hello This code: ``` import Console.Options main = defaultMain $ do arg Right raw command "sample" $ action $ \toParam -> putStrLn $ show $ toParam arg ``` throws error:...
Hello, it seems that remainingArguments is also including flag arguments with it. For instance: ``` storageDirContent
The `Justify` data type and the `justify` function are currently under two different headings in the library documentation. Currently, `Justify` is under "Table", while `justify` is under "Attributes". Since the...
when creating a new command with argument, the argument is not described in the help message.