Skip to content

Strings

Text is the Binary type. Interpolation is written #{...}. The interpolated expression must be Binary, Integer, Float, Boolean, or Atom.

module strings
pub fn greet(name: Binary) -> Binary {
"hello, #{name}"
}