# New Ticket Created by Moritz Lenz
# Please include the string: [perl #114914]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=114914 >
21:50 < moritz> r: say START { 42 } for 1, 2
21:50 <+p6eval> rakudo a19ce8: OUTPUT«Mu()Mu()»
But this works:
21:50 < moritz> r: say START 42 for 1, 2
21:50 <+p6eval> rakudo a19ce8: OUTPUT«42 42»
as does this:
21:52 < moritz> r: for 1, 2 { say START 42 }
21:52 <+p6eval> rakudo a19ce8: OUTPUT«4242»