summaryrefslogblamecommitdiff
path: root/test/files/run/repl-assign.check
blob: bdc7793c37764c854592b476a823e631c3427d97 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                           

                 
 

                 
 




             

       
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>