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