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

6 lines
135 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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