Is there a quick way to make a large list without a for loop?
Many programming languages have some form. For example to make a list from 1 to 100: list = 1:100, or list = range(1,100) or list = {1..100} or list = seq(1,100) Let me know! I couldn't find anything in the scripting guide.
