Help for this page

Select Code to Download


  1. or download this
    sub send_slow{
          ...
    ...
        @linechars = split ('', $chunk);
        foreach $char (@linechars) {
          ...
    
  2. or download this
                            my @SlowChars = split(//,$_send);
                            print Dumper(@SlowChars);
                            my $return = $exp->send_slow(1,@SlowChars);
    
  3. or download this
                            print Dumper($_send);
                            my $return = $exp->send_slow(1,$_send);