pict icon indicating copy to clipboard operation
pict copied to clipboard

Support range(start, end, step) function

Open redatlantic opened this issue 3 years ago • 0 comments

I'd like to humbly request a python-like range function that takes a start, end, and step function to generate values so I don't have to type out 1, 2, 3, 4, 5, 6, ...100.

e.g. range(1, 3, +1) => 1, 2, 3 range(1.0, 3.0, +1.0) => 1.0, 2.0, 3.0 range(2, 32, **2) => 2, 4, 8, 16, 32

redatlantic avatar Apr 21 '21 17:04 redatlantic