uni-util-2.2.0.0: Util/CompileFlags.hs
{-# LANGUAGE CPP #-}
-- | This module contains flags which control compilation.
module Util.CompileFlags where
isDebug :: Bool
#ifdef DEBUG
isDebug = True
#else
isDebug = False
#endif
uniVersion :: String
uniVersion = "2.2"