Help for this page

Select Code to Download


  1. or download this
        open (DAT, "$file") || die "$!\n";
        while (<DAT>) {
    ...
            $cc++;
        }
        close(DAT);
    
  2. or download this
    while (<DATA>) {
        for my $char ( split // ) {
    ...
            print ord( $char ), " KEY\n";
        }
    }