Help for this page

Select Code to Download


  1. or download this
      DB<11> $i = 0; say for grep { $i++ % 4 < 2 } 0..12
    0
    1
    ...
    8
    9
    12
    
  2. or download this
      DB<12> $i = 3; say for grep { $i++ % 4 < 2 } 0..12
    1
    2
    ...
    6
    9
    10