Help for this page

Select Code to Download


  1. or download this
        my &helper = -> @prev, @rest { ... }
    
  2. or download this
        my sub helper (@prev, @rest) { ... }
    
  3. or download this
    sub outer(*@vals)
    {
    ...
       }
       gather { helper [], *@vals }
    }