# New Ticket Created by  "Carl Mäsak" 
# Please include the string:  [perl #73128]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=73128 >


<colomon> rakudo:  sub xyz(Mu $x) { say ~$x; };  xyz(<a b c>);
<p6eval> rakudo 4fc3af: OUTPUT«3␤»
<pmichaud> ah-ha
<masak> wut?
<pmichaud> parcels aren't stringifying properly.
<colomon> rakudo:  sub xyz(Mu $x) { say $x.WHAT; };  xyz(<a b c>);
<p6eval> rakudo 4fc3af: OUTPUT«Parcel()␤»
<pmichaud> rakudo: sub xyz(Mu $x) { say ~$x };  xyz(('a', 'b', 'c'));
<p6eval> rakudo 4fc3af: OUTPUT«3␤»
* masak submits rakudobug
<pmichaud> colomon++
<pmichaud> rakudo:  say PARROT(<a b c>);
<p6eval> rakudo 4fc3af: OUTPUT«Parcel␤»

Reply via email to