Rename "desirability" to "preference" (much less awkward), with the
[match/match.git] / program / MonadStuff.hs
CommitLineData
5a07db44
MM
1module MonadStuff (nop) where
2
3-- Useful for "if this, then mutate that, else do nothing"
4nop :: Monad m => m ()
5nop = return ()