Name: Anonymous 2013-02-13 5:41
perlgeek.de/blog-en/perl-6/2013-pattern-matching.html
>>> stuff = [1, [2, (3, 4)], [5]]
>>> a, (b, c), [d] = stuff
>>> print a, b, c, d
1 2 (3, 4) 5(x,) wart), on the RHS any sequence-like type will do.