Raku / ake

A Raku make-a-like inspired by rake
Artistic License 2.0
12 stars 10 forks source link

`task` can probably do what `file` does if an IO path is passed #18

Closed AlexDaniel closed 5 years ago

AlexDaniel commented 6 years ago

I think something like:

task ‘foo.txt’.IO, { ; }

Should be identical to:

file ‘foo.txt’, { ; }