Subject: | Add currying support |
There should be a new method, C<with>, that curries arguments into the step without
running it. I.e.,
my $mkDir = step mkDir =>
ensure { -d shift }
using { mkdir shift }
;
my $makeScratch = $mkDir->with("/scratch");
$makeScratch->do();