Help for this page

Select Code to Download


  1. or download this
    sub set_timeout {
        my $self = shift;
    ...
    
        return $to;    
    }
    
  2. or download this
    sub set_timeout {
        my $self = $_[0];
    ...
    
        return $to;    
    }
    
  3. or download this
    sub set_stuff {
        my $self = shift;
    ...
    
        return 1;    
    }