Relational Operators and Numeric Values : Comparison Operators « Language Basics « Perl
- Perl
- Language Basics
- Comparison Operators
Relational Operators and Numeric Values
Operator Example Meaning
> $x > $y $x is greater than $y
>= $x >= $y $x is greater than or equal to $y
< $x < $y $x is less than $y
<= $x <= $y $x is less than or equal to $y
Related examples in the same category