# New Ticket Created by Geoffrey Broadwell # Please include the string: [perl #101858] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=101858 >
In short: $ ./perl6 -e 'my @a = < a b c >; @a.unshift(1); @a.unshift(0); @a.unshift(2); @a.unshift(""); @a.unshift(3); @a.unshift(Mu); @a.unshift(4); @a.perl.say' Array.new(4, 3, 2, 1, "a", "b", "c") The three false values are missing. As seen at: http://irclog.perlgeek.de/perl6/2011-10-21 -'f