Help for this page

Select Code to Download


  1. or download this
    sub data_for {
      binmode($_[0]);
      return <$_[0]>;
    }
    
  2. or download this
    sub data_for {
      binmode($_[0]);
      read( $_[0], my $data, 100_000_000 );
      return $data;
    }