diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-12 16:38:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-12 16:38:24 +0300 |
commit | c104e054efeb6a4367d0b6d9744d792dac4d05df (patch) | |
tree | 03feb1a5ea079a31b916ec9781d41d452e6a3172 /src | |
parent | bugfix & refactoring (diff) | |
download | windows-env-c104e054efeb6a4367d0b6d9744d792dac4d05df.tar.gz windows-env-c104e054efeb6a4367d0b6d9744d792dac4d05df.zip |
optparse-applicative instead of GetOpt
Diffstat (limited to 'src')
-rw-r--r-- | src/Utils.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Utils.hs b/src/Utils.hs index ec15405..143696b 100644 --- a/src/Utils.hs +++ b/src/Utils.hs @@ -7,8 +7,8 @@ module Utils where import Control.Monad (liftM) -import Data.Char (toLower) -import System.IO (hFlush, stdout) +import Data.Char (toLower) +import System.IO (hFlush, stdout) prompt :: String -> IO String prompt banner = do |