Function rubble_templates::std_fun::strings::concat_function[][src]

pub fn concat_function(parameters: &[String]) -> String

Concatenates the parameters.

Eg.

concat 1 "hello" " " 3.14 "world!"

Expected output:

1hello 3.14world!