packages feed

pantry-0.8.3: src/windows/System/IsWindows.hs

{-# LANGUAGE NoImplicitPrelude #-}

module System.IsWindows
  ( osIsWindows
  ) where

import           RIO ( Bool (..) )

-- | True if using Windows OS.
osIsWindows :: Bool
osIsWindows = True