in reply to Re: TK screen problem
in thread TK screen problem

if (int($i/100)*100 == $i) {
That can be more concisely written as if ($i % 100 == 0) {

Replies are listed 'Best First'.
Re^3: TK screen problem
by Lawliet (Curate) on Oct 31, 2008 at 18:42 UTC

    Or:

    unless ($i % 100) {

    :P

    I'm so adjective, I verb nouns!

    chomp; # nom nom nom