Is macOS
Is macOS : Boolean
Parameter | Type | Description | |
---|---|---|---|
Function result | Boolean | ← | True if operating system = macOS, else False |
Description
The Is macOS command returns True if the current operating system is macOS.
Example
You want to determine if the current operating system is macOS:
If(Is macOS)
ALERT("It's macOS")
Else
ALERT("It's not macOS")
End if