Help for this page

Select Code to Download


  1. or download this
    {
       print("for:   ");
    ...
       }
       print("\n");
    }
    
  2. or download this
    for:   [f][r][e][][d]
    while: [f][r][e][][d]
    
  3. or download this
    {
       print("while: ");
    ...
       }
       print("\n");
    }
    
  4. or download this
    while: [f][]
    bare:  [f][f]
    
  5. or download this
    {
       print("norm: ");
    ...
       }
       print("\n");
    }
    
  6. 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>
    
  7. or download this
    {
       print("norm: ");
    ...
       for (; /./g ; print("<$&>"),1) { next }
       print("\n");
    }
    
  8. or download this
    norm: <f><r><e><d>
    next: <><><><>
    
  9. or download this
    print("norm: ");
    for (my $i; $i ? $i<2 : 'a'=~/./g; ++$i) {
    ...
       next;
    }
    print("\n");
    
  10. or download this
    norm: [a][a]
    next: [a][]