Closed
Description
things like:
let name = "Anton".to_string();
print!("hello {}",name);
are akward and verbose. What about scala-like string interpolation that will work everywhere (not only in print statements)
let name = "Anton".to_string();
print!(s"hello {name}"); // Scala uses s"${variableName}" but I think $ is redundant