Re: Can I join this mailing list please?
HI Zackary, Yes you can. Use the "How do I subscribe?" section in the below link. http://learn.perl.org/faq/beginners.html#subscribe Thank You, Ram Murthy On Thu, May 14, 2015 at 5:21 PM, Zackary M wrote: > Thanks! > > Zac >
Re: last
Bill, Below statement wont be helpful for lee, as he has requirement to loop at least one time. last if ($counter > 2); where as below one is working: if ( $counter > 2) { print 'if : ' . $counter . "\n"; #could do print "if : $counter\n" as well last; } On