How can I quickly create a List[Int] that has 1 to 100 in it?
I tried List(0 to 100) , but it returns List[Range.Inclusive]
Thanks
|
How can I quickly create a List[Int] that has 1 to 100 in it? I tried List(0 to 100) , but it returns List[Range.Inclusive] Thanks |
|||
|
|
|
Try
The code you tried is creating a list with a single element - the range. You might also be able to do
Edit The If you read |
||||
|
|
|
|||
|
|