Merge pull request #16 from hapytex/improvement/use-maybe
use maybe instead of fromMaybe
This commit is contained in:
commit
569488d495
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
module Main where
|
module Main where
|
||||||
|
|
||||||
import Control.Monad (when)
|
import Control.Monad (when)
|
||||||
import Data.Maybe (fromMaybe)
|
|
||||||
import Data.Monoid ((<>))
|
import Data.Monoid ((<>))
|
||||||
import System.Exit (exitSuccess)
|
import System.Exit (exitSuccess)
|
||||||
import System.IO (readFile, writeFile)
|
import System.IO (readFile, writeFile)
|
||||||
|
@ -75,7 +74,7 @@ main :: IO ()
|
||||||
main = do
|
main = do
|
||||||
(Opts hd ml hs) <- execParser fullopts -- get CLI opts/args
|
(Opts hd ml hs) <- execParser fullopts -- get CLI opts/args
|
||||||
when hs (getHighScore >>= printM >> exitSuccess) -- show high score and exit
|
when hs (getHighScore >>= printM >> exitSuccess) -- show high score and exit
|
||||||
l <- fromMaybe pickLevel (return <$> ml) -- pick level prompt if necessary
|
l <- maybe pickLevel return ml -- pick level prompt if necessary
|
||||||
g <- playGame l (hdOptStr hd) -- play game
|
g <- playGame l (hdOptStr hd) -- play game
|
||||||
handleEndGame (_score g) -- save & print score
|
handleEndGame (_score g) -- save & print score
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue