module Control.Eternal.Syntax.Logic
  ( ifSo
  ) where

import Control.Monad (when)

ifSo :: IO () -> Bool -> IO ()
ifSo = flip when