The s interpolator allows the usage of variables within a string.
val name = "Brian" println(s"Hello $name")
prints "Hello Brian" to the console when ran.