Help for this page

Select Code to Download


  1. or download this
    #!perl
    
    ...
    my $return = $fn2->Call(0, 0); 
    
    print "Done!\n";
    
  2. or download this
    #!perl -w
    use strict;
    ...
       local($SIG{INT}) = 'IGNORE';
       $lines = threads->create( sub{ my @rv = <STDIN>; chomp @rv; return 
    +\@rv } )->join();
    }