object Runner { def main(args: Array[String]) = { val naturals = LazyList.from(1) println(naturals.take(8).toList) } }