Help for this page

Select Code to Download


  1. or download this
    package whirly;
    use overload ('""' => \&nextchar, fallback => 1);
    ...
      push @{ $_[0] }, shift @{ $_[0] };
      return $_[0][0];
    }
    
  2. or download this
    use whirly;
    $waiting = new whirly;
    until (file_downloaded()) {
      print $waiting;
    }