isWin32

Returns 1 (true) if operative system in use is Windows.

Syntax:
variable = isWin32

Example:
if isWin32 then
    print("Wow, I'm running on a Windows machine!!!")
else
    print("This is not a Windows machine")
end if