The following example code should accelerate the execution of a Raku program:
for (1..4).race() {
say "Doing $_";
sleep 1;
}
say now - INIT now;
I remember, that it worked some time ago, but now I always end up with 4 seconds runtime. Also using .race() or adding parameters doesn't change anything. What does I have to do, to run 2 processes at the same time?