Is this program currently running in a Windows OS?

Property definitions

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
`}
lib/core/kernel.nit:1099,1--1106,2