isaacg1 / pyth

Pyth, an extremely concise language. Try it here:
https://pyth.herokuapp.com/
MIT License
263 stars 57 forks source link

Inclusive range doesn't provide decrementing values #181

Closed syrrim closed 8 years ago

syrrim commented 8 years ago

}, the inclusive range function, should continue to work when A > B. In this case, it would provide [A, A-1, ... B+1, B]. This would put in line with r, the half inclusive range function.

muddyfish commented 8 years ago

Added a pull request with this functionality.

isaacg1 commented 8 years ago

Merged.