- 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", $_);
}
- 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", $_);
}
- 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", $_);
}