Help for this page

Select Code to Download


  1. or download this
    sub start {
        my $self = shift;
    ...
        last unless $self->do_one_loop();
        }
    }
    
  2. or download this
    use threads;
    
    ...
    
    my $thread = threads->new(sub { $aim->start });
    $aim->send_im($victim, $msg);