Help for this page

Select Code to Download


  1. or download this
    my @chars = split( //, $in );
    foreach my $char (@chars) {
       $check += ord($char);
    }
    
  2. or download this
    $check += ord $_ for split //, $in;