in reply to Re^2: Code brewing for the upcoming MCE 10 year anniversary
in thread Code brewing for the upcoming MCE 10 year anniversary

Hi Mario

Maybe spawn_for_each ... ?


The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^4: Code brewing for the upcoming MCE 10 year anniversary
by marioroy (Prior) on Nov 11, 2022 at 13:22 UTC

    Yesterday, I had code supporting spawn foreach and for.

    spawn foreach my $i (30..38) { say "$$: $i"; } spawn for my $i (30..38) { say "$$: $i"; }