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


> say ((1,2) X <a b>).perl
(1, "a", 1, "b", 2, "a", 2, "b")

Which makes it looks flat, but it's not:

> say [(1,2) X <a b>].perl
[(1, "a"), (1, "b"), (2, "a"), (2, "b")]

-- 
Mark J. Reed <markjr...@gmail.com>

Reply via email to