7 lines
121 B
Haskell
7 lines
121 B
Haskell
|
module GHCup.Utils.Prelude.Windows where
|
||
|
|
||
|
isWindows, isNotWindows :: Bool
|
||
|
isWindows = True
|
||
|
isNotWindows = not isWindows
|
||
|
|