packages feed

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

{-# LANGUAGE NoImplicitPrelude #-}

module System.IsWindows
  ( osIsWindows
  ) where

import           RIO ( Bool (..) )

-- | False if not using Windows OS.
osIsWindows :: Bool
osIsWindows = False