Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $text = '.'x400;
    my $summary = substr($text, 0, 500);
    print length(unpack 'H*', $summary) / 2, "\n";
    
  2. or download this
    400