Help for this page

Select Code to Download


  1. or download this
    print map { chr hex } split /\s+/, $line x $nlines;
    
  2. or download this
    for my $repeat (1..$nlines) {
        print map { chr hex } split /\s+/, $line;
    }