Hello Name with interpolation



examples/intro/hello_name_interpolation.cr
name = "Foo Bar"
puts "Hello #{name}!"

Hello Foo Bar!