1 |
We have already seen equality operators
|
2 | $a <=> $b returns -1,0,1 depending if $a is respectively numerically less than, equal to, or greater than $b |
3 | $a cmp $b returns -1,0,1 depending if $a is respectively stringwise less than, equal to, or greater than $b |