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

scala> 

scala> var x = 10
x: Int = 10

scala> var y = 11
y: Int = 11

scala> x = 12
x: Int = 12

scala> y = 13
y: Int = 13

scala> 

scala>