# New Ticket Created by  Larry Wall 
# Please include the string:  [perl #126029]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126029 >


22:10 < TimToady> m: sub MAIN { my @p = (start { say "A$_"; sleep rand; say
"B$_" } for 1..5); await @p; }
22:10 <+camelia> rakudo-moar c54773: OUTPUT«A1␤A2␤A3␤A4␤A5␤»
22:10 < TimToady> m: sub MAIN { my @p = (start { say "A$_"; sleep rand; say
"B$_" } for 1..5); sink await @p; }
22:10 <+camelia> rakudo-moar c54773: OUTPUT«A1␤A2␤A3␤A4␤A5␤B4␤B3␤B5␤B2␤B1␤»
22:11 < TimToady> needing to sink that await seems like a problem, since
main should probably assume --> Sink
22:12 < TimToady> (this prevented RC's Dining Philosophers from running
correctly)

Reply via email to