Interpolates a string
Aliases:
std::string myString = "Your message here";
"Your string here"
'Your string here \${variable}'
`string`
show variable
String.format("%s", value)
let text = `Hello, name!`;
"Your message here"
"Your string herevariable"
f"Your message here"
paste0("Your string here ", variable)
"Your string here \#{variable}"
format!("Your message here")
s"Your string here \${variable}"
# Bash uses double quotes for variable interpolation:echo "Hello, name!"
"\(variable)"
`Hello, name!`