I\'m new to the Scala language.
I need Range for Long type.
I need a List of [1, 2, 3 ... 10000000] with step 1. If I use until/to I get an error because of
You can instead use NumericRange[Long] from the standard library.