class SyntaxTree::YARV::NewRange

### Summary

‘newrange` creates a new range object from the top two values on the stack. It pops both of them off, and then pushes on the new range. It takes one argument which is 0 if the end is included or 1 if the end value is excluded.

### Usage

~~~ruby x = 0 y = 1 p (x..y), (x…y) ~~~