isWin32
オペレーティングシステムがWindowsなら 1 (true)。
書式:
variable
= isWin32
例:
if
isWin32
then
print("Wow, I'm running on a Windows machine!!!")
else
print("This is not a Windows machine")
end if