Break On
 
;This is number version
If 5 > 45
? '5 is greater then 45'
Else
? '5 is less then 45'
EndIf
 
; Outputs
; 5 is less then 45
 
 
;This is ASCII version
If '5' > '45'
? '5 is greater then 45'
Else
? '5 is less then 45'
EndIf
 
; Outputs
; 5 is greater then 45