# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #78202] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=78202 >
<masak> rakudo: sub Good ($time) { say "Good $time #perl6." }; Good now # discovered by tylercurtis <p6eval> rakudo 7c74c0: OUTPUT«===SORRY!===Unable to parse blockoid, couldn't find final '}' at line 22» <masak> std: sub Good ($time) { say "Good $time #perl6." }; Good now <p6eval> std 237d266: OUTPUT«ok 00:01 119m» * masak submits rakudobug <masak> I know what this is. it's the whitespace thingy inside the interpolator being too greedy/needy. <masak> STD seems to get this right. <masak> in Rakudo, the interpolator finds the ' #', thinks the rest of the line is a comment, and then dies. <masak> we've had other similar cases of Rakudo doing run-on interpolation.