mirror of
https://github.com/mx42/adventofcode.git
synced 2026-01-14 05:49:52 +01:00
13 lines
206 B
Scala
13 lines
206 B
Scala
/**
|
|
* Usage: scala part1.scala < input
|
|
*/
|
|
|
|
import scala.io.StdIn
|
|
import scala.collection.Iterator
|
|
|
|
println(Iterator
|
|
.continually(StdIn.readLine)
|
|
.takeWhile(_ != null)
|
|
.map(Integer.parseInt)
|
|
.sum)
|