RosettaCodeData/Task/Loops-Nested/MAXScript/loops-nested-2.max

12 lines
116 B
Plaintext

testArray = #(#(1,5,2,19),#(11,20,7,2))
scan_nested testArray
#(#(1, 5, 2, 19), #(11, 20, 7, 2))
1
5
2
19
11
20
OK