Is there a shorter way to write: ```val rng = Rand...
# getting-started
m
Is there a shorter way to write:
Copy code
val rng = Random(0)
generateSequence { rng.nextInt() }.take(10).toList()
j
List(10) { rng.nextInt() }
👍 2