Help for this page

Select Code to Download


  1. or download this
    for my $ind ( 0 .. $#bb ) {
       say "ind is $ind";
    }
    
  2. or download this
    using ( var enumerator = list.GetEnumerator() ) {
       while ( enumerator.MoveNext() ) {
    ...
          // ...
       }
    }
    
  3. or download this
    for ( var item in list ) {
       // ...
    }