On Wed, Feb 13, 2019 at 7:30 AM Mikkel <[email protected]> wrote:
>
> > for $files -> Str $f {.say}
> Type check failed in binding to parameter '$f'; expected Str but got
> Array[Str] (Array[Str].new("Test", "Test 2"))
> in block <unit> at <unknown file> line 1
>
Try either 'for @$files' or ' for $files.list'.
