-
Notifications
You must be signed in to change notification settings - Fork 134
Open
Description
(Tested in webchuck)
This:
fun void test() {
<<< "A" >>>;
0.5::second => now;
<<< "B" >>>;
0.5::second => now;
<<< "C" >>>;
}
fun void test2() {
for(0 => int i; i < 2; i++) {
spork ~ test();
2::second => now;
}
}
spork ~ test2();
10::second => now;
works as expected:
A
B
C
A
B
C
But change the 2::second => now;
line in the loop to 0.5::second => now;
and:
A
B
A
Change it to 0.1::second => now;
and:
A
A
It needs the elaborate setup afaics, for example not sporking test2
makes it work.
Metadata
Metadata
Assignees
Labels
No labels