Help for this page

Select Code to Download


  1. or download this
      for zip(@foos, 0...) -> $foo, $i {
          # Here, $foo is an element of @foo
          # and $i is its index.
      }
    
  2. or download this
    for @foos.kv -> $i, $foo {
      # $i = index; $foo = value
    }