aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/repl-assign.check
blob: faa8a93244fe2cd813953b768071352afd108af4 (plain) (tree)
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 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> :quit