summaryrefslogtreecommitdiff
path: root/test/files/run/t5583.check
blob: 32d285cbb373c0e3d74f77c1dc40abb438798099 (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> :quit