Difference between revisions of "Range"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "<c>range</c> Return a list containing a series of numbers within a range. from (number, default 0): first number to include in the list to (number, default 0): point at which...")
(No difference)

Revision as of 15:50, 17 March 2020

range Return a list containing a series of numbers within a range. from (number, default 0): first number to include in the list to (number, default 0): point at which to stop adding numbers to the list step (number, optional): amount to add to the previous number on each step; defaults to 1 if to > from, or -1 if to < from

Example

range(50, 5, -10)		// returns [50, 40, 30, 20, 10]