Help for this page

Select Code to Download


  1. or download this
    {
       open(my $fh, '>:raw', 'file') or die("open>: $!\n");
    ...
       local $/ = "\x0D\x0A";
       print length, "\n" while <$fh>;
    }
    
  2. or download this
    5
    7
    
  3. or download this
    5
    3
    4