IsMore
| Name | Mandatory | Description | Default | Type | 
| ⬅️ Input |  | Input of any type is accepted. |  | Any | 
| Output ➡️ |  | Outputs true if the input is greater than the operand and false otherwise. |  | Bool | 
| Value | No | The value to check against. | 0 | Any | 
 
Checks if the input is greater than the operand.
Examples
|  1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14 | ; ; string comparison
"z" | IsMore("a")
Log("'z' is more than 'a' numerically")
Assert.Is(true Break: true)
; ; integer comparison
5 | IsMore(2)
Log("5 is more than 2")
Assert.Is(true Break: true)
; ; float comparison
5.0 | IsMore((1.0 | Math.Add(3.0)))
Log("5.0 is more than 4.0")
Assert.Is(true Break: true)
 |