Function rubble_templates::functions::concat_function[][src]

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

Concatenates the parameters.

Eg.

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

Expected output:

1hello 3.14world!