Skip to main content

concat_function

Function concat_function 

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

Concatenates the parameters.

Eg.

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

Expected output:

1hello 3.14world!