>>> do x <- getLine unless (x == "hi") (putStrLn "hi!") comingupwithexamplesisdifficult hi!
>>> unless (pi > exp 1) Nothing Just ()
>>> unlessM (pure False) $ putTextLn "No text :(" No text :( >>> unlessM (pure True) $ putTextLn "Yes text :)"