- #
Hello Name with interpolation
- Interpolation is the embedding of variables in strings using #{}
examples/intro/hello_name_interpolation.cr
name = "Foo Bar" puts "Hello #{name}!"
Hello Foo Bar!
name = "Foo Bar" puts "Hello #{name}!"
Hello Foo Bar!