You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to Scala 2.13.16 (OpenJDK 64-Bit Server VM, Java 23.0.2).
Type in expressions for evaluation. Or try :help.
scala> val x = "hi"
val x: String = hi
scala> "$x"
val res0: String = $x
scala> :se -Xlint:missing-interpolator
scala> "$x"
val res1: String = $x
scala> :se -Xlint
scala> "$x"
val res2: String = $x
This isn't unreasonable:
The text was updated successfully, but these errors were encountered: