- or download this
{
print("for: ");
...
}
print("\n");
}
- or download this
for: [f][r][e][][d]
while: [f][r][e][][d]
- or download this
{
print("while: ");
...
}
print("\n");
}
- or download this
while: [f][]
bare: [f][f]
- or download this
{
print("norm: ");
...
}
print("\n");
}
- or download this
norm: <>[f]<f>[r]<r>[e]<e>[d]<d>
next: <>[f]<f>[r]<r>[e]<>[d]<d>
redo: <>[f]<f>[r]<r>[e][]<>[d]<d>
- or download this
{
print("norm: ");
...
for (; /./g ; print("<$&>"),1) { next }
print("\n");
}
- or download this
norm: <f><r><e><d>
next: <><><><>
- or download this
print("norm: ");
for (my $i; $i ? $i<2 : 'a'=~/./g; ++$i) {
...
next;
}
print("\n");
- or download this
norm: [a][a]
next: [a][]