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

scala> val y = 55
y: Int = 55

scala> val x = s"""
  y = $y
"""
x: String =
"
  y = 55
"

scala> :quit