On Thu, Dec 29, 2011 at 9:26 PM, Xi Chen <cxde...@gmail.com> wrote:
> Hello everyone,
>
> I saw a code below to get two same letters "p" in @a.
>
> @a = qw (D D p O H p A O);
> foreach $b (@a){
> $n =~ /$b/i;
> if($n >= 2){
>     $m = $b;
>    }
> }
>
> But I don't know what does ">=" mean. Thank you!
>

It is just geater than equal to inside an if condition

Chris

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to