String Interpolation

Examples Filter
name := 'Bob'
println('Hello, $name!')  // `$` is used for string interpolation
Last Run  :
Hello, Bob!