Help for this page

Select Code to Download


  1. or download this
    while ($time > 0) {
      print " " . ' ' x (3 - length($time)) . "$time $line";
    ...
      $time -= 1;
      sleep 1;
    }
    
  2. or download this
    while ($time--) {
      printf(" %3s %s", $time, $line);
    ...
    
      sleep 1;
    }