RosettaCodeData/Task/Loops-Foreach/MAXScript/loops-foreach.max

6 lines
135 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
arr = for i in 1 to 50 collect ("Number: " + (random 10 99) as string)
makeuniquearray arr
sort arr
for i in arr do print i as string