summaryrefslogtreecommitdiff
path: root/test/files/run/t5583.check
blob: af96405bddc0461402e733e868cc7004a5560126 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Type in expressions to have them evaluated.
Type :help for more information.

scala> var s = 0
s: Int = 0

scala> for (i <- 1 to 10) {s += i}

scala> for (i <- 1 to 10) {s += i}

scala> for (i <- 1 to 10) {s += i}

scala> println(s)
165

scala>