use maybe instead of fromMaybe

This commit is contained in:
Willem Van Onsem 2021-03-16 00:09:36 +01:00
parent 55f87143b4
commit 1caafe0b35
No known key found for this signature in database
GPG key ID: 1D22C3A122D794F4

View file

@ -1,7 +1,6 @@
module Main where
import Control.Monad (when)
import Data.Maybe (fromMaybe)
import Data.Monoid ((<>))
import System.Exit (exitSuccess)
import System.IO (readFile, writeFile)
@ -75,7 +74,7 @@ main :: IO ()
main = do
(Opts hd ml hs) <- execParser fullopts -- get CLI opts/args
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
handleEndGame (_score g) -- save & print score