core :: Sys :: is_windows
# Is this program currently running in a Windows OS? fun is_windows: Bool `{ #ifdef _WIN32 return 1; #else return 0; #endif `}