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

12 lines
175 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fn scan_Nested arr =
(
for subArray in arr where classof subArray == Array do
(
for item in subArray do
(
print item as string
if item == 20 do return OK
)
)
)