Closed
Description
Current description:
Make an range from start to end inclusive with step value 1.
Should be 'exclusive', not 'inclusive'. Output from REPL:
scala> Range(1, 5)
res35: scala.collection.immutable.Range = Range(1, 2, 3, 4)
The description taken from http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.Range$.