summaryrefslogblamecommitdiff
path: root/test/files/run/t5583.check
blob: af96405bddc0461402e733e868cc7004a5560126 (plain) (tree)
1
2
3


                                           












                                  
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>