# New Ticket Created by Elizabeth Mattijsen # Please include the string: [perl #127756] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=127756 >
use nqp; my str @a = "a".."e"; nqp::setelems(@a,0); nqp::setelems(@a,5); say
@a.join(":”)
a:b:c:d:e
expected:
::::
same for int / num arrays.
