Advertisement
alphauser420

if then

Mar 12th, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Local $number = 10
  2. If $number > 5 Then
  3. MsgBox(0, "Result", "$number is greater than 5.")
  4. EndIf
  5.  
  6. ; Explanation:
  7. ; This If-Then statement checks if $number is greater than 5.
  8. ; If the condition is true, a message box is displayed indicating that ;$number is greater than 5.
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement