isWin32
使用中のオペレーティングシステムが Windows ならば 1 (true) を返します。
文法:
variable
= isWin32
用例:
if
isWin32
then
print("嗚呼、吾輩は Windows マシンで動作しているナリ!!!")
else
print("これは Windows マシンではない")
end if