Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support range(start, end, step) function #54

Open
redatlantic opened this issue Apr 21, 2021 · 0 comments
Open

Support range(start, end, step) function #54

redatlantic opened this issue Apr 21, 2021 · 0 comments

Comments

@redatlantic
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant