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

scala> val i = 7
i: Int = 7

scala> val j = 8
j: Int = 8

scala> i * j
res0: Int = 56

scala> :save repl-save-run.obj/session.repl

scala> 
val i = 7
val j = 8
i * j