blob: 616ec8f6900d8a963401c2e6a9a8677241722cc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// I tried to use many effects :)
import io/error
import exception
import char
import stream
def collectLine(): Unit / {read[Char], emit[Int], stop} = {
val c = do read[Char]()
if (c == '\n') do stop()
with default[WrongFormat, Unit] { collectLine() }
val number = digitValue(c)
do emit(number)
collectLine()
}
def solve(): Unit / {read[Char], emit[Int], stop} = {
val line: List[Int] = collectList {
with exhaustively
collectLine()
}
val sum = line match {
case Cons(head, Nil()) => head * 10 + head
case Cons(head, ls) => {
with default[MissingValue, Int] { 0 }
head * 10 + ls.last
}
case Nil() => do stop()
}
do emit(sum)
}
def main() = {
with on[IOError].panic
with readFile("input")
with decodeUTF8
// part 1
println(sum {
with exhaustively
solve()
})
}
|