Help for this page

Select Code to Download


  1. or download this
    my @arr = qw( and you will be pleased with the results );
    #             0   0   1    0  1       0    1   1
    ...
    foreach (@result) {
       printf("%s\n", $_);
    }
    
  2. or download this
    my @arr = qw( and you will be pleased with the results );
    #             0   0   1    0  1       0    1   1
    ...
    foreach (@new) {
       printf("%s\n", $_);
    }
    
  3. or download this
    @arr = qw( and you will be pleased with the results XX YY AA BB );
    # \x2b     0   0   1    0  1       0    1   1       0  0  1  0 
    ...
    foreach (@new) {
       printf("%s\n", $_);
    }