Report abuse

1
2
3
4
5
6
7
8
9
10
11
◆ ruby1.9 -e "def foo(a, (b, (c, (d, *e), *f), *g), h, i = 3, *j); p a,b,c,d,e,f,g,h,i,j; end; foo(1, [2, [3, [4, 5, 6], 7, 8], 9, 10], 11)"
1
2
3
4
[5, 6]
[7, 8]
[9, 10]
11
3
[]