# 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«A1A2A3A4A5»
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«A1A2A3A4A5B4B3B5B2B1»
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)