Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Local $value = 8
- If $value > 10 Then
- MsgBox(0, "Result", "$value is greater than 10.")
- Else
- MsgBox(0, "Result", "$value is not greater than 10.")
- EndIf
- ; Explanation:
- ; This If-Else statement checks if $value is greater than 10.
- ; If true, it displays a message stating that $value is greater than 10; otherwise, it indicates that
- $value is not greater than 10.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement