Safe Haskell | Safe-Inferred |
---|
Extra functions for the current system info.
- module System.Info
- isWindows :: Bool
Documentation
module System.Info
Return True
on Windows and False
otherwise. A runtime version of #ifdef minw32_HOST_OS
.
Equivalent to os == "mingw32"
, but: more efficient; doesn't require typing an easily
mistypeable string; actually asks about your OS not a library; doesn't bake in
32bit assumptions that are already false. </rant>
isWindows == (os == "mingw32")