larger
x > y
larger(x, y)
Check if value x is larger than y. Returns true if x is larger than y, and false if not.
Try it yourself:
$1 | 2 > 3
| |
$2 | 5 > 2*2
| |
$3 | a = 3.3
| |
$4 | b = 6-2.8
| |
$5 | (a > b)
| |
$6 | (b < a)
| |
$7 | 5 cm > 2 inch
|